summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Dawson <pkdawson@gentoo.org>2004-08-26 00:34:50 +0000
committerPatrick Dawson <pkdawson@gentoo.org>2004-08-26 00:34:50 +0000
commitaf13edf46c662cb10023fd610dfc321c803c6f89 (patch)
tree1054d91acf114834e90841cb155106615eded854 /media-sound/kmp/files
parentpatches made it into upstream (Manifest recommit) (diff)
downloadgentoo-2-af13edf46c662cb10023fd610dfc321c803c6f89.tar.gz
gentoo-2-af13edf46c662cb10023fd610dfc321c803c6f89.tar.bz2
gentoo-2-af13edf46c662cb10023fd610dfc321c803c6f89.zip
gcc34 fix + cleanup
Diffstat (limited to 'media-sound/kmp/files')
-rw-r--r--media-sound/kmp/files/kmp-0.01-gcc34.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/media-sound/kmp/files/kmp-0.01-gcc34.patch b/media-sound/kmp/files/kmp-0.01-gcc34.patch
new file mode 100644
index 000000000000..91205f086e81
--- /dev/null
+++ b/media-sound/kmp/files/kmp-0.01-gcc34.patch
@@ -0,0 +1,12 @@
+diff -ur kmp-0.01.orig/linkedlist.h kmp-0.01/linkedlist.h
+--- kmp-0.01.orig/linkedlist.h 2004-08-25 16:05:47.366049280 +0000
++++ kmp-0.01/linkedlist.h 2004-08-25 16:06:16.632600088 +0000
+@@ -121,7 +121,7 @@
+ int linkedList<ItemType>::add(ItemType Item, int location) {
+ node* parent;
+ node* nextspot;
+- if(!find(location, root_, parent)) return 0;
++ if(!find(location, root, parent)) return 0;
+ nextspot = parent->next;
+ parent->next = new node;
+ parent->next->next = nextspot;