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/mpc_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/mpc_plugin.c')
-rw-r--r-- | src/inputPlugins/mpc_plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inputPlugins/mpc_plugin.c b/src/inputPlugins/mpc_plugin.c index 2ae6bf141..54e7e5479 100644 --- a/src/inputPlugins/mpc_plugin.c +++ b/src/inputPlugins/mpc_plugin.c @@ -290,11 +290,11 @@ static struct tag *mpcTagDup(char *file) return NULL; } - ret = apeDup(file); + ret = tag_ape_load(file); if (!ret) - ret = id3Dup(file); + ret = tag_id3_load(file); if (!ret) - ret = newMpdTag(); + ret = tag_new(); ret->time = total_time; return ret; |