diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-09-07 13:24:56 +0800 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-09-07 13:24:56 +0800 |
commit | 45d8d4e71d6dc4e040dcc0a2269e9635c1c4c772 (patch) | |
tree | 779c4ef93e152803d441633232ed136742538770 /audio/kmp | |
parent | dfba7a27e25cec93e49373549d6df9244435ef5d (diff) | |
download | freebsd-ports-gnome-45d8d4e71d6dc4e040dcc0a2269e9635c1c4c772.tar.gz freebsd-ports-gnome-45d8d4e71d6dc4e040dcc0a2269e9635c1c4c772.tar.zst freebsd-ports-gnome-45d8d4e71d6dc4e040dcc0a2269e9635c1c4c772.zip |
Fix build with gcc-3.4
PR: ports/71447
Submitted by: maintainer
Approved by: portmgr (implicit)
Diffstat (limited to 'audio/kmp')
-rw-r--r-- | audio/kmp/files/patch-linkedlist.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/kmp/files/patch-linkedlist.h b/audio/kmp/files/patch-linkedlist.h new file mode 100644 index 000000000000..f5ae19098ae5 --- /dev/null +++ b/audio/kmp/files/patch-linkedlist.h @@ -0,0 +1,11 @@ +--- linkedlist.h Tue Sep 7 06:32:48 2004 ++++ linkedlist.h Tue Sep 7 06:33:00 2004 +@@ -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; |