diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 09:38:21 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-29 09:38:21 +0200 |
commit | 91502cd71ea92716729109677c6d8e57c42e63ae (patch) | |
tree | 14a8f8e554add64b4af22561446bae203195b34c /src/inputPlugins/wavpack_plugin.c | |
parent | d0556dc9839627f899939e9419181a4ad9b2053d (diff) | |
download | mpd-91502cd71ea92716729109677c6d8e57c42e63ae.tar.gz mpd-91502cd71ea92716729109677c6d8e57c42e63ae.tar.xz mpd-91502cd71ea92716729109677c6d8e57c42e63ae.zip |
tag: renamed functions, no CamelCase
Diffstat (limited to 'src/inputPlugins/wavpack_plugin.c')
-rw-r--r-- | src/inputPlugins/wavpack_plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inputPlugins/wavpack_plugin.c b/src/inputPlugins/wavpack_plugin.c index 13c8f8769..2bcafbbb9 100644 --- a/src/inputPlugins/wavpack_plugin.c +++ b/src/inputPlugins/wavpack_plugin.c @@ -296,9 +296,9 @@ static struct tag *wavpack_tagdup(char *fname) return NULL; } - tag = newMpdTag(); + tag = tag_new(); if (tag == NULL) { - ERROR("failed to newMpdTag()\n"); + ERROR("failed to tag_new()\n"); return NULL; } @@ -325,7 +325,7 @@ static struct tag *wavpack_tagdup(char *fname) } WavpackGetTagItem(wpc, tagtypes[i].name, s, j); - addItemToMpdTag(tag, tagtypes[i].type, s); + tag_add_item(tag, tagtypes[i].type, s); } } |