summaryrefslogtreecommitdiff
path: root/audio/id3lib/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'audio/id3lib/patches/patch-aa')
-rw-r--r--audio/id3lib/patches/patch-aa17
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; }
};