Missing ;

This commit is contained in:
Jason Short 2011-12-26 15:16:21 -08:00
parent 4353f60f60
commit 51e6170ecb

View File

@ -339,7 +339,7 @@ static bool verify_takeoff()
return false;
}
// are we above our target altitude?
return (current_loc.alt > next_WP.alt)
return (current_loc.alt > next_WP.alt);
}
static bool verify_land()