From 5bc42cf57cf1b3942ce3ea3718c30ac034a93e98 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 25 Feb 2025 11:26:30 +0100 Subject: [PATCH] posix-h4-airoc: add missing default case --- port/posix-h4-airoc/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/port/posix-h4-airoc/main.c b/port/posix-h4-airoc/main.c index d6ca4010e..282a02fbb 100644 --- a/port/posix-h4-airoc/main.c +++ b/port/posix-h4-airoc/main.c @@ -155,7 +155,9 @@ static void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *pack switch (hci_event_command_complete_get_command_opcode(packet)) { case HCI_OPCODE_HCI_READ_LOCAL_VERSION_INFORMATION: local_version_information_handler(packet); - break; + break; + default: + break; } break; case BTSTACK_EVENT_STATE: