aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist/EmbeddedCuePlaylistPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-12-29 16:16:04 +0100
committerMax Kellermann <max@duempel.org>2013-12-29 16:24:04 +0100
commit9be82891b01ba2190a97032a2f84b70151bc2358 (patch)
tree64aca4836fcb7672df94c24a2d5ac216d8ae15fb /src/playlist/EmbeddedCuePlaylistPlugin.cxx
parentc97685fe6cbcd412cb2425e475075ffbabcd072c (diff)
downloadmpd-9be82891b01ba2190a97032a2f84b70151bc2358.tar.gz
mpd-9be82891b01ba2190a97032a2f84b70151bc2358.tar.xz
mpd-9be82891b01ba2190a97032a2f84b70151bc2358.zip
TagFile: pass reference instead of pointer
Diffstat (limited to 'src/playlist/EmbeddedCuePlaylistPlugin.cxx')
-rw-r--r--src/playlist/EmbeddedCuePlaylistPlugin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist/EmbeddedCuePlaylistPlugin.cxx b/src/playlist/EmbeddedCuePlaylistPlugin.cxx
index 96d83b968..9dfecbf46 100644
--- a/src/playlist/EmbeddedCuePlaylistPlugin.cxx
+++ b/src/playlist/EmbeddedCuePlaylistPlugin.cxx
@@ -103,7 +103,7 @@ embcue_playlist_open_uri(const char *uri,
const auto playlist = new EmbeddedCuePlaylist();
- tag_file_scan(path_fs, &embcue_tag_handler, playlist);
+ tag_file_scan(path_fs, embcue_tag_handler, playlist);
if (playlist->cuesheet.empty()) {
tag_ape_scan2(path_fs, &embcue_tag_handler, playlist);
if (playlist->cuesheet.empty())