mirror of
https://github.com/esphome/esphome.git
synced 2024-11-13 02:37:47 +01:00
Fix non-const global (#1907)
This commit is contained in:
parent
0efc1f06f2
commit
93f8ee7e60
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
namespace light {
|
namespace light {
|
||||||
|
|
||||||
static const char *TAG = "light";
|
static const char *const TAG = "light";
|
||||||
|
|
||||||
#ifdef USE_JSON
|
#ifdef USE_JSON
|
||||||
LightCall &LightCall::parse_color_json(JsonObject &root) {
|
LightCall &LightCall::parse_color_json(JsonObject &root) {
|
||||||
|
|
Loading…
Reference in a new issue