aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins/mod_plugin.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/mod_plugin.c
parent8ae390f65142ed38a0b5e2474fc6a21866092e84 (diff)
downloadmpd-95451b5821da1383f476cd8d6c6c8d12e683b777.tar.gz
mpd-95451b5821da1383f476cd8d6c6c8d12e683b777.tar.xz
mpd-95451b5821da1383f476cd8d6c6c8d12e683b777.zip
tag: renamed functions, no CamelCase
Diffstat (limited to 'src/inputPlugins/mod_plugin.c')
-rw-r--r--src/inputPlugins/mod_plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/mod_plugin.c b/src/inputPlugins/mod_plugin.c
index c954f064d..586d87ae9 100644
--- a/src/inputPlugins/mod_plugin.c
+++ b/src/inputPlugins/mod_plugin.c
@@ -224,12 +224,12 @@ static struct mpd_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();