airport.c
changeset 2639 8a7342eb3a78
parent 2549 f1d3b383d557
child 2752 b5fe5a7e6282
--- a/airport.c	Mon Nov 14 15:22:12 2005 +0000
+++ b/airport.c	Mon Nov 14 19:48:04 2005 +0000
@@ -376,7 +376,7 @@
 
 	// 1980-1-1 is --> 21915
 	// 1990-1-1 is --> 25568
-	if (_date >= 21915) {SETBIT(bytemask, 3);}	// metropilitan airport 1980
-	if (_date >= 25568) {SETBIT(bytemask, 4);}	// international airport 1990
+	if (_date >= 21915) SETBIT(bytemask, 3); // metropilitan airport 1980
+	if (_date >= 25568) SETBIT(bytemask, 4); // international airport 1990
 	return bytemask;
 }