Plane: minor code style change

use comment and function style consistent with rest of code
This commit is contained in:
Andrew Tridgell 2014-10-24 21:50:18 +11:00
parent c1b949a74f
commit 02b80db67c
1 changed files with 7 additions and 3 deletions

View File

@ -116,9 +116,13 @@ static void setup_landing_glide_slope(void)
constrain_target_altitude_location(loc, prev_WP_loc);
}
/* find the nearest landing sequence starting point (DO_LAND_START) and
* switch to that mission item. Returns false if no DO_LAND_START available.*/
static bool jump_to_landing_sequence(void) {
/*
find the nearest landing sequence starting point (DO_LAND_START) and
switch to that mission item. Returns false if no DO_LAND_START
available.
*/
static bool jump_to_landing_sequence(void)
{
uint16_t land_idx = mission.get_landing_sequence_start();
if (land_idx != 0) {