From b01ea3e2c7cee3a4aaac4e5d45093c5d9c9bc9e7 Mon Sep 17 00:00:00 2001 From: xiongweichao Date: Wed, 17 Nov 2021 11:15:15 +0800 Subject: [PATCH] Missing break in switch --- components/bt/host/bluedroid/btc/core/btc_dm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/components/bt/host/bluedroid/btc/core/btc_dm.c b/components/bt/host/bluedroid/btc/core/btc_dm.c index 6837507e96..bd77dca4e1 100644 --- a/components/bt/host/bluedroid/btc/core/btc_dm.c +++ b/components/bt/host/bluedroid/btc/core/btc_dm.c @@ -394,6 +394,7 @@ static void btc_dm_auth_cmpl_evt (tBTA_DM_AUTH_CMPL *p_auth_cmpl) break; default: status = BT_STATUS_FAIL; + break; } } #if (BTC_GAP_BT_INCLUDED == TRUE)