From 02b80db67cc1d2847e651b585803d4c8c7717329 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 24 Oct 2014 21:50:18 +1100 Subject: [PATCH] Plane: minor code style change use comment and function style consistent with rest of code --- ArduPlane/landing.pde | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ArduPlane/landing.pde b/ArduPlane/landing.pde index 147e9ab9a6..4e48debcdc 100644 --- a/ArduPlane/landing.pde +++ b/ArduPlane/landing.pde @@ -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) {