From 26f9d2d5e1aec6d4f0f7f72f911d377270a8c753 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Fri, 4 Jun 2021 14:37:41 +0200 Subject: [PATCH] rtc: Fix minor const char* correction issue --- components/esp_hw_support/port/esp32s3/rtc_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_hw_support/port/esp32s3/rtc_init.c b/components/esp_hw_support/port/esp32s3/rtc_init.c index 2aa7a3fd0a..2b12794731 100644 --- a/components/esp_hw_support/port/esp32s3/rtc_init.c +++ b/components/esp_hw_support/port/esp32s3/rtc_init.c @@ -27,7 +27,7 @@ #define RTC_CNTL_MEM_FORCE_NOISO (RTC_CNTL_SLOWMEM_FORCE_NOISO | RTC_CNTL_FASTMEM_FORCE_NOISO) -static char *TAG = "rtcinit"; +static const char *TAG = "rtcinit"; void rtc_init(rtc_config_t cfg) {