diff options
Diffstat (limited to 'libc/string/strpbrk.c')
-rw-r--r-- | libc/string/strpbrk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/strpbrk.c b/libc/string/strpbrk.c index 6ba3796..cd3b71c 100644 --- a/libc/string/strpbrk.c +++ b/libc/string/strpbrk.c @@ -38,7 +38,7 @@ strpbrk(const char *s1, const char *s2) { const char *scanp; int c, sc; - + while ((c = *s1++) != 0) { for (scanp = s2; (sc = *scanp++) != 0;) if (sc == c) |