mirror of the now-defunct rocklinux.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
The usual gcc-3.4 fixes.
|
|
|
|
- Rene Rebe <rene@rocklinux.org>
|
|
|
|
diff -ur yaboot-1.3.11-orig/lib/strstr.c yaboot-1.3.11/lib/strstr.c
|
|
--- yaboot-1.3.11-orig/lib/strstr.c 2001-09-20 15:15:31.000000000 +0200
|
|
+++ yaboot-1.3.11/lib/strstr.c 2004-05-04 11:23:49.000000000 +0200
|
|
@@ -76,7 +76,9 @@
|
|
a = *++haystack;
|
|
if (a == '\0')
|
|
goto ret0;
|
|
-shloop: }
|
|
+shloop:
|
|
+ ((void)0);
|
|
+ }
|
|
while (a != b);
|
|
|
|
jin: a = *++haystack;
|