From 7f3a870b03f8f32905db3dffde7de45ba20b02f5 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 23 Feb 2004 11:42:49 +0000 Subject: [PATCH] Fix a type mismatch error introduced with the latest changes to src/Airports/simple.[ch]xx --- src/GUI/AirportList.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/AirportList.cxx b/src/GUI/AirportList.cxx index 6e4570b6c..431a88981 100644 --- a/src/GUI/AirportList.cxx +++ b/src/GUI/AirportList.cxx @@ -16,7 +16,7 @@ AirportList::AirportList (int x, int y, int width, int height) _content = new char *[_nAirports+1]; for (int i = 0; i < _nAirports; i++) { - const FGAirport * airport = _airports->getAirport(i); + const FGAirport *airport = _airports->getAirport(i); snprintf(buf, 1023, "%s %s\0", airport->id.c_str(), airport->name.c_str()); -- 2.39.5