Skip to content
Snippets Groups Projects
Commit 42032f98 authored by Jason Short's avatar Jason Short
Browse files

Missed a Semicolon

parent e6ee50f5
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment