From 62f89a33036dc5c0767824c769981a30f47cf18f Mon Sep 17 00:00:00 2001 From: Pedro Date: Mon, 15 Aug 2022 20:44:34 -0300 Subject: [PATCH] Remove trailing semicolon from bt dft initializer Similar to espressif#6554 --- components/bt/include/esp_bt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bt/include/esp_bt.h b/components/bt/include/esp_bt.h index 550b22d8c4..c87b4371e5 100644 --- a/components/bt/include/esp_bt.h +++ b/components/bt/include/esp_bt.h @@ -155,7 +155,7 @@ the adv packet will be discarded until the memory is restored. */ .pcm_polar = CONFIG_BTDM_CTRL_PCM_POLAR_EFF, \ .hli = BTDM_CTRL_HLI, \ .magic = ESP_BT_CONTROLLER_CONFIG_MAGIC_VAL, \ -}; +} #else #define BT_CONTROLLER_INIT_CONFIG_DEFAULT() {0}; _Static_assert(0, "please enable bluetooth in menuconfig to use bt.h");