From 26f774858d644bbf74795d80443734dff68e9101 Mon Sep 17 00:00:00 2001 From: Guy Mishol Date: Thu, 2 Jan 2025 17:08:38 +0200 Subject: [PATCH] Fix a build warning caused by using undeclared ARRAY_SIZE macro Use of undeclared ARRAY_SIZE macro causes build warning. Add include to "os/util.h" in ble_store_config.c file. --- nimble/host/store/config/src/ble_store_config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nimble/host/store/config/src/ble_store_config.c b/nimble/host/store/config/src/ble_store_config.c index 664b8768bf..b800a4ee58 100644 --- a/nimble/host/store/config/src/ble_store_config.c +++ b/nimble/host/store/config/src/ble_store_config.c @@ -24,6 +24,7 @@ #include "syscfg/syscfg.h" #include "host/ble_hs.h" #include "base64/base64.h" +#include "os/util.h" #include "store/config/ble_store_config.h" #include "ble_store_config_priv.h"