summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-26 10:55:29 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-26 10:55:29 +0000
commitae966d0bd9b9d9e26b18f10f874e86607567145f (patch)
treecda3d465234cddb3ae4794d07dae63e53029798f /libc/string
parent64c25a0625ffe49c29f887ed68880101728ac784 (diff)
Give the label a ; so compilers have no excuse to whine
Diffstat (limited to 'libc/string')
-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;