diff options
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/strstr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/string/strstr.c b/libc/string/strstr.c index 6742e69cb..6aa448787 100644 --- a/libc/string/strstr.c +++ b/libc/string/strstr.c @@ -93,7 +93,9 @@ char * FUNC ( const char *phaystack, const char *pneedle) a = *++haystack; if (a == '\0') goto ret0; - shloop:} + shloop: + ; + } while (VAL(a) != VAL(b)); jin:a = *++haystack; |