From 96205903362ee94206602e1bf2e7d1806e5310ce Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 29 May 2017 11:22:55 +0200 Subject: [PATCH] example/hfg_ag: missing break --- example/hfp_ag_demo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/example/hfp_ag_demo.c b/example/hfp_ag_demo.c index a51b1d8d8..1715cb2a1 100644 --- a/example/hfp_ag_demo.c +++ b/example/hfp_ag_demo.c @@ -518,6 +518,7 @@ static void packet_handler(uint8_t packet_type, uint16_t channel, uint8_t * even printf("Event not handled %u\n", event[2]); break; } + break; case HCI_SCO_DATA_PACKET: sco_demo_receive(event, event_size); break;