aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins/_flac_common.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:38:21 +0200
committerEric Wong <normalperson@yhbt.net>2008-09-02 00:13:06 -0700
commit95451b5821da1383f476cd8d6c6c8d12e683b777 (patch)
tree2a6e089fe6d75b739c319e13063a222b51534678 /src/inputPlugins/_flac_common.c
parent8ae390f65142ed38a0b5e2474fc6a21866092e84 (diff)
downloadmpd-95451b5821da1383f476cd8d6c6c8d12e683b777.tar.gz
mpd-95451b5821da1383f476cd8d6c6c8d12e683b777.tar.xz
mpd-95451b5821da1383f476cd8d6c6c8d12e683b777.zip
tag: renamed functions, no CamelCase
Diffstat (limited to '')
-rw-r--r--src/inputPlugins/_flac_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inputPlugins/_flac_common.c b/src/inputPlugins/_flac_common.c
index 6307af00d..9950f75db 100644
--- a/src/inputPlugins/_flac_common.c
+++ b/src/inputPlugins/_flac_common.c
@@ -123,10 +123,10 @@ static unsigned int commentMatchesAddToTag(const
if ((vlen > 0) && (0 == strncasecmp(str, (char *)entry->entry, slen))
&& (*(entry->entry + slen) == '=')) {
if (!*tag)
- *tag = newMpdTag();
+ *tag = tag_new();
- addItemToMpdTagWithLen(*tag, itemType,
- (char *)(entry->entry + slen + 1), vlen);
+ tag_add_item_n(*tag, itemType,
+ (char *)(entry->entry + slen + 1), vlen);
return 1;
}