GCS_MAVLink: add break in default case

non-functional change but removes some warnings in eclipse editors
This commit is contained in:
Randy Mackay 2017-09-20 09:08:30 +09:00
parent 6a1e14fccd
commit 953adc506d

View File

@ -1792,6 +1792,7 @@ MAV_RESULT GCS_MAVLINK::handle_command_camera(const mavlink_command_long_t &pack
break;
default:
result = MAV_RESULT_UNSUPPORTED;
break;
}
return result;
}
@ -2137,6 +2138,7 @@ MAV_RESULT GCS_MAVLINK::handle_command_long_message(mavlink_command_long_t &pack
default:
result = MAV_RESULT_UNSUPPORTED;
break;
}
return result;