diff options
author | wiz <wiz> | 2006-09-23 13:26:24 +0000 |
---|---|---|
committer | wiz <wiz> | 2006-09-23 13:26:24 +0000 |
commit | 8f5d95c53e6a69e443efd14c4cad5b850dc88b1f (patch) | |
tree | 5603d3b0c0eacacc5db18e242750f79a43fbc87c /audio/id3lib/patches | |
parent | 0467898e45ba29c00e726000d8016f4a28b3369c (diff) | |
download | pkgsrc-8f5d95c53e6a69e443efd14c4cad5b850dc88b1f.tar.gz |
Two functions had missing arguments. Patch from stoned@
Fixes problems in amarok (and probably other dependencies).
Bump PKGREVISION.
Diffstat (limited to 'audio/id3lib/patches')
-rw-r--r-- | audio/id3lib/patches/patch-aa | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/audio/id3lib/patches/patch-aa b/audio/id3lib/patches/patch-aa index 4f2585b397f..fc6e9eb403f 100644 --- a/audio/id3lib/patches/patch-aa +++ b/audio/id3lib/patches/patch-aa @@ -1,7 +1,20 @@ -$NetBSD: patch-aa,v 1.3 2004/11/17 17:42:05 minskim Exp $ +$NetBSD: patch-aa,v 1.4 2006/09/23 13:26:24 wiz Exp $ ---- include/id3/id3lib_strings.h.orig 2003-03-01 18:23:00.000000000 -0600 +--- include/id3/id3lib_strings.h.orig 2003-03-02 00:23:00.000000000 +0000 +++ include/id3/id3lib_strings.h +@@ -100,10 +100,10 @@ namespace std + + static char_type + to_char_type(const int_type& __c) +- { return char_type(); } ++ { return char_type(__c); } + + static int_type +- to_int_type(const char_type& __c) { return int_type(); } ++ to_int_type(const char_type& __c) { return int_type(__c); } + + static bool + eq_int_type(const int_type& __c1, const int_type& __c2) @@ -117,7 +117,8 @@ namespace std { return eq_int_type(__c, eof()) ? int_type(0) : __c; } }; |