Missed a Semicolon

This commit is contained in:
Jason Short 2012-05-30 09:36:16 -07:00
parent 302c632205
commit f0456dc947
1 changed files with 2 additions and 2 deletions

View File

@ -422,7 +422,7 @@ static bool verify_land_sonar()
landing_boost++; // reduce the throttle at twice the normal rate
if(ground_detector < 30) {
ground_detector++
ground_detector++;
}else if (ground_detector == 30){
ground_detector++;
land_complete = true;
@ -456,7 +456,7 @@ static bool verify_land_baro()
landing_boost++;
if(ground_detector < 30) {
ground_detector++
ground_detector++;
}else if (ground_detector == 30){
ground_detector++;
land_complete = true;