]> git.mxchange.org Git - flightgear.git/commitdiff
Fix a type mismatch error introduced with the latest changes to
authorcurt <curt>
Mon, 23 Feb 2004 11:42:49 +0000 (11:42 +0000)
committercurt <curt>
Mon, 23 Feb 2004 11:42:49 +0000 (11:42 +0000)
src/Airports/simple.[ch]xx

src/GUI/AirportList.cxx

index 6e4570b6c9236dd0def5c0c7585791245a871fc3..431a88981a1544859fb8cca3a8313f3d2d3f3e1b 100644 (file)
@@ -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());