From 772d3da98a31b5cefa9d4de0dd5056fb19eae00f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Aug 2008 08:27:08 +0200 Subject: no camel case in struct decoder_plugin --- src/song.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/song.c') diff --git a/src/song.c b/src/song.c index 42d9d8cb5..1149da8bb 100644 --- a/src/song.c +++ b/src/song.c @@ -72,7 +72,7 @@ Song *newSong(const char *url, int type, Directory * parentDir) while (!song->tag && (plugin = isMusic(abs_path, &(song->mtime), next++))) { - song->tag = plugin->tagDupFunc(abs_path); + song->tag = plugin->tag_dup_func(abs_path); } if (!song->tag || song->tag->time < 0) { freeSong(song); @@ -303,7 +303,7 @@ int updateSongInfo(Song * song) while (!song->tag && (plugin = isMusic(abs_path, &(song->mtime), next++))) { - song->tag = plugin->tagDupFunc(abs_path); + song->tag = plugin->tag_dup_func(abs_path); } if (!song->tag || song->tag->time < 0) return -1; -- cgit v1.2.3