diff options
author | 2004-05-12 16:27:23 +0000 | |
---|---|---|
committer | 2004-05-12 16:27:23 +0000 | |
commit | 86b62ef70b7ad9b22433f3be29a6cf0b739c7fc8 (patch) | |
tree | ecdcebbfb1ac2fa0113b248cbed556a172275bb6 /sys-boot/yaboot/files | |
parent | Marked stable on hppa. (diff) | |
download | historical-86b62ef70b7ad9b22433f3be29a6cf0b739c7fc8.tar.gz historical-86b62ef70b7ad9b22433f3be29a6cf0b739c7fc8.tar.bz2 historical-86b62ef70b7ad9b22433f3be29a6cf0b739c7fc8.zip |
gcc - 3.4 compilation fix
Diffstat (limited to 'sys-boot/yaboot/files')
-rw-r--r-- | sys-boot/yaboot/files/yaboot-3.4.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys-boot/yaboot/files/yaboot-3.4.patch b/sys-boot/yaboot/files/yaboot-3.4.patch new file mode 100644 index 000000000000..57964d8a911c --- /dev/null +++ b/sys-boot/yaboot/files/yaboot-3.4.patch @@ -0,0 +1,13 @@ +--- ./lib/strstr.c.orig 2004-05-12 16:16:44.249220125 +0000 ++++ ./lib/strstr.c 2004-05-12 16:14:47.245465904 +0000 +@@ -76,7 +76,9 @@ + a = *++haystack; + if (a == '\0') + goto ret0; +-shloop: } ++shloop: ++ a = a; ++ } + while (a != b); + + jin: a = *++haystack; |