From abe984be7c1c1005b4f9bc743c5b54c84a937d45 Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Thu, 24 Jan 2019 08:51:44 +0900 Subject: [PATCH] Corrected type qualifier --- examples/Simple/Simple.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Simple/Simple.ino b/examples/Simple/Simple.ino index 8b875b0..5875927 100644 --- a/examples/Simple/Simple.ino +++ b/examples/Simple/Simple.ino @@ -57,9 +57,9 @@ static const char AUX_TIMEZONE[] PROGMEM = R"( )"; typedef struct { - char* zone; - char* ntpServer; - int8_t tzoff; + const char* zone; + const char* ntpServer; + int8_t tzoff; } Timezone_t; static const Timezone_t TZ[] = {