From: curt Date: Mon, 23 Feb 2004 11:42:49 +0000 (+0000) Subject: Fix a type mismatch error introduced with the latest changes to X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7f3a870b03f8f32905db3dffde7de45ba20b02f5;p=flightgear.git Fix a type mismatch error introduced with the latest changes to src/Airports/simple.[ch]xx --- 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());