From e7500c711d6c084bc7cfbabe2372ec6107b35fb0 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 0662c6b757..01b62a12e7 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_PU (RTC_CNTL_SLOWMEM_FORCE_PU | RTC_CNTL_FASTMEM_FORCE_PU) #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) {