diff options
Diffstat (limited to 'src/song.c')
-rw-r--r-- | src/song.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |