AP_Airspeed: add missing break statement

This commit is contained in:
Peter Barker 2020-01-09 16:53:48 +11:00 committed by Peter Barker
parent 824a085097
commit 41d34e9f88
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ float AP_Airspeed_SDP3X::_correct_pressure(float press)
case AP_Airspeed::PITOT_TUBE_ORDER_NEGATIVE:
press = -press;
sign = -1.0f;
//FALLTHROUGH;
break;
case AP_Airspeed::PITOT_TUBE_ORDER_POSITIVE:
break;
case AP_Airspeed::PITOT_TUBE_ORDER_AUTO: