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) {