Skip to content
Snippets Groups Projects
Commit c3acd3ba authored by mcsauder's avatar mcsauder Committed by Beat Küng
Browse files

Delete unnecessary curly braces in simulator_mavlink.cpp

parent e43a0bbf
No related branches found
No related tags found
No related merge requests found
......@@ -317,10 +317,9 @@ void Simulator::handle_message(mavlink_message_t *msg)
handle_message_rc_channels(msg);
break;
case MAVLINK_MSG_ID_LANDING_TARGET: {
handle_message_landing_target(msg);
break;
}
case MAVLINK_MSG_ID_LANDING_TARGET:
handle_message_landing_target(msg);
break;
case MAVLINK_MSG_ID_HIL_STATE_QUATERNION:
handle_message_hil_state_quaternion(msg);
......
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