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.

19 lines
456 B

  1. The usual gcc-3.4 fixes.
  2. - Rene Rebe <rene@rocklinux.org>
  3. diff -ur yaboot-1.3.11-orig/lib/strstr.c yaboot-1.3.11/lib/strstr.c
  4. --- yaboot-1.3.11-orig/lib/strstr.c 2001-09-20 15:15:31.000000000 +0200
  5. +++ yaboot-1.3.11/lib/strstr.c 2004-05-04 11:23:49.000000000 +0200
  6. @@ -76,7 +76,9 @@
  7. a = *++haystack;
  8. if (a == '\0')
  9. goto ret0;
  10. -shloop: }
  11. +shloop:
  12. + ((void)0);
  13. + }
  14. while (a != b);
  15. jin: a = *++haystack;