aircraft_cmd.c
changeset 3579 4a55e8ce3087
parent 3491 35d747bb5e82
child 3701 fdbb6bcab8a2
--- a/aircraft_cmd.c	Tue Apr 18 06:42:14 2006 +0000
+++ b/aircraft_cmd.c	Tue Apr 18 07:20:37 2006 +0000
@@ -1600,7 +1600,6 @@
 {
 	AirportFTA *current;
 	byte prev_pos;
-	bool retval = false;
 
 	// error handling
 	if (v->u.air.pos >= Airport->nofelements) {
@@ -1624,7 +1623,7 @@
 		if (AirportSetBlocks(v, current, Airport)) {
 			v->u.air.pos = current->next_position;
 		} // move to next position
-		return retval;
+		return false;
 	}
 
 	// there are more choices to choose from, choose the one that
@@ -1634,7 +1633,7 @@
 			if (AirportSetBlocks(v, current, Airport)) {
 				v->u.air.pos = current->next_position;
 			} // move to next position
-			return retval;
+			return false;
 		}
 		current = current->next_in_chain;
 	} while (current != NULL);