From 7ccef7818b087d029125e7e0f74c87e6456bbf61 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Sat, 14 Aug 2021 14:52:32 +0200 Subject: [PATCH] fix a protobuf bug --- Aircraft.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Aircraft.proto b/Aircraft.proto index 5c47705..9f212a2 100644 --- a/Aircraft.proto +++ b/Aircraft.proto @@ -14,6 +14,6 @@ message Aircraft { string type = 3; // aircraft ICAO type string wtc = 4; // WTC string wakeRecat = 5; // wake recatogization category - Int32 engineCount = 6; // number of engines + int32 engineCount = 6; // number of engines EngineType engineType = 7; // engine type }