From 77922a24c3bfc85786fd0c9f3364fc8294f49069 Mon Sep 17 00:00:00 2001 From: Valeri Date: Mon, 24 Aug 2020 01:26:08 +0300 Subject: [PATCH] esp_hid: add missing static qualifier Closes https://github.com/espressif/esp-idf/pull/5778 Closes IDFGH-3877 --- components/esp_hid/src/esp_hid_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_hid/src/esp_hid_common.c b/components/esp_hid/src/esp_hid_common.c index 5bdc294f0b..9d1f4167f4 100644 --- a/components/esp_hid/src/esp_hid_common.c +++ b/components/esp_hid/src/esp_hid_common.c @@ -19,7 +19,7 @@ #if (CONFIG_GATTS_ENABLE || CONFIG_GATTC_ENABLE) #include "esp_gatt_defs.h" #endif -const char *TAG = "hid_parser"; +static const char *TAG = "hid_parser"; typedef struct { uint16_t appearance;