Skip to content

Commit ba9eb7e

Browse files
committed
Fix -Wwrite-strings warning
1 parent 9c6d5d7 commit ba9eb7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utility/time/NTPUtils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class NTPUtils
5454
static int const MAX_NTP_PORT = 65535;
5555
#endif
5656
static unsigned long const NTP_TIMEOUT_MS = 1000;
57-
static char constexpr * NTP_TIME_SERVER = "time.arduino.cc";
57+
static constexpr const char * NTP_TIME_SERVER = "time.arduino.cc";
5858

5959
static void sendNTPpacket(UDP & udp);
6060
};

0 commit comments

Comments
 (0)