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/mod_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/mod_plugin.c')
-rw-r--r-- | src/inputPlugins/mod_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/mod_plugin.c b/src/inputPlugins/mod_plugin.c index 754dd6746..1d458919c 100644 --- a/src/inputPlugins/mod_plugin.c +++ b/src/inputPlugins/mod_plugin.c @@ -232,12 +232,12 @@ static struct tag *modTagDup(char *file) } Player_Free(moduleHandle); - ret = newMpdTag(); + ret = tag_new(); ret->time = 0; title = xstrdup(Player_LoadTitle(file)); if (title) - addItemToMpdTag(ret, TAG_ITEM_TITLE, title); + tag_add_item(ret, TAG_ITEM_TITLE, title); MikMod_Exit(); |