From ae966d0bd9b9d9e26b18f10f874e86607567145f Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 26 Feb 2002 10:55:29 +0000 Subject: Give the label a ; so compilers have no excuse to whine --- libc/string/strstr.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libc/string/strstr.c') 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; -- cgit v1.2.3