mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-21 23:33:57 -04:00
GCS_Common: brackets missing in switch case
This commit is contained in:
parent
47efaf9c62
commit
2f58d082f0
@ -4108,11 +4108,13 @@ void GCS_MAVLINK::handle_common_message(const mavlink_message_t &msg)
|
|||||||
|
|
||||||
#if AP_EFI_MAV_ENABLED
|
#if AP_EFI_MAV_ENABLED
|
||||||
case MAVLINK_MSG_ID_EFI_STATUS:
|
case MAVLINK_MSG_ID_EFI_STATUS:
|
||||||
AP_EFI *efi = AP::EFI();
|
{
|
||||||
if (efi) {
|
AP_EFI *efi = AP::EFI();
|
||||||
efi->handle_EFI_message(msg);
|
if (efi) {
|
||||||
}
|
efi->handle_EFI_message(msg);
|
||||||
break;
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user