From d6c9a8133ea4d2020de6e2d9f7dd41baf6d98bcb Mon Sep 17 00:00:00 2001 From: Michael Davidson Date: Fri, 22 Dec 2023 21:00:15 +1100 Subject: [PATCH] Fixed const-ness of TAG in vertical_stack and horizontal_stack --- esphome/components/graphical_layout/horizontal_stack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/graphical_layout/horizontal_stack.cpp b/esphome/components/graphical_layout/horizontal_stack.cpp index 5e4b32929f..24726db042 100644 --- a/esphome/components/graphical_layout/horizontal_stack.cpp +++ b/esphome/components/graphical_layout/horizontal_stack.cpp @@ -7,7 +7,7 @@ namespace esphome { namespace graphical_layout { -static const char *TAG = "horizontalstack"; +static const char *const TAG = "horizontalstack"; void HorizontalStack::dump_config(int indent_depth, int additional_level_depth) { ESP_LOGCONFIG(TAG, "%*sItem Padding: %i", indent_depth, "", this->item_padding_);