From 4c21e465128444c8e81e608801020692cde82458 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Sun, 29 Sep 2019 12:37:33 +0200 Subject: [PATCH] Fix compilation error Fix compilation error (#6509) --- sonoff/support.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonoff/support.ino b/sonoff/support.ino index 3baa88f2d..0a8b6c42c 100644 --- a/sonoff/support.ino +++ b/sonoff/support.ino @@ -125,7 +125,7 @@ size_t strcspn(const char *str1, const char *str2) } // https://clc-wiki.net/wiki/C_standard_library:string.h:strpbrk -// Locate the first occurrence in the string pointed to by s1 of any character from the string pointed to by s2 +// Locate the first occurrence in the string pointed to by s1 of any character from the string pointed to by s2 char* strpbrk(const char *s1, const char *s2) { while(*s1) {