summaryrefslogtreecommitdiff
path: root/libc/string/strstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strstr.c')
-rw-r--r--libc/string/strstr.c4
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;