Browse Source

Give the label a ; so compilers have no excuse to whine

Eric Andersen 23 years ago
parent
commit
ae966d0bd9
1 changed files with 3 additions and 1 deletions
  1. 3 1
      libc/string/strstr.c

+ 3 - 1
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;