summaryrefslogtreecommitdiff
path: root/audio/taglib
diff options
context:
space:
mode:
authorwiz <wiz>2006-09-23 13:26:24 +0000
committerwiz <wiz>2006-09-23 13:26:24 +0000
commita33521c5808275b54208c295439f3659ae9e0837 (patch)
tree5603d3b0c0eacacc5db18e242750f79a43fbc87c /audio/taglib
parentb25aefbe181122c5fe5761a5122e7a86216f7658 (diff)
downloadpkgsrc-a33521c5808275b54208c295439f3659ae9e0837.tar.gz
Two functions had missing arguments. Patch from stoned@
Fixes problems in amarok (and probably other dependencies). Bump PKGREVISION.
Diffstat (limited to 'audio/taglib')
-rw-r--r--audio/taglib/Makefile4
-rw-r--r--audio/taglib/files/id3lib_strings.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/audio/taglib/Makefile b/audio/taglib/Makefile
index f2fe84c1982..b256453f511 100644
--- a/audio/taglib/Makefile
+++ b/audio/taglib/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.12 2006/05/04 16:37:29 tv Exp $
+# $NetBSD: Makefile,v 1.13 2006/09/23 13:26:24 wiz Exp $
#
DISTNAME= taglib-1.4
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= audio
MASTER_SITES= http://ktown.kde.org/~wheeler/files/src/
diff --git a/audio/taglib/files/id3lib_strings.h b/audio/taglib/files/id3lib_strings.h
index 7eb4f64e670..b16eb256132 100644
--- a/audio/taglib/files/id3lib_strings.h
+++ b/audio/taglib/files/id3lib_strings.h
@@ -1,5 +1,5 @@
// -*- C++ -*-
-// $Id: id3lib_strings.h,v 1.3 2006/01/11 16:41:45 joerg Exp $
+// $Id: id3lib_strings.h,v 1.4 2006/09/23 13:26:24 wiz Exp $
// id3lib: a software library for creating and manipulating id3v1/v2 tags
// Copyright 1999, 2000 Scott Thomas Haug
@@ -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)