mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-21 23:33:57 -04:00
Missed a Semicolon
This commit is contained in:
parent
e6ee50f53d
commit
42032f9845
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user