Explorar el Código

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

Eric Andersen hace 23 años
padre
commit
ae966d0bd9
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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;