diff options
author | k44 <k44ester@gmail.com> | 2014-12-16 18:43:05 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-16 18:43:05 +0100 |
commit | 773de38bd9e018e48cf5b0a4f009dedce090bf0a (patch) | |
tree | d8c2bb5379f277832fe220f5c78a4c7f19e41e38 /src | |
parent | fa4beeee75f6f4a8377d6fb2ab0844b8b7105840 (diff) | |
download | mpd-773de38bd9e018e48cf5b0a4f009dedce090bf0a.tar.gz mpd-773de38bd9e018e48cf5b0a4f009dedce090bf0a.tar.xz mpd-773de38bd9e018e48cf5b0a4f009dedce090bf0a.zip |
playlist/embcue: fix filename suffix detection
The definition of the playlist_plugin struct member of the embcue
plugin was incorrect.
Diffstat (limited to '')
-rw-r--r-- | src/playlist/EmbeddedCuePlaylistPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist/EmbeddedCuePlaylistPlugin.cxx b/src/playlist/EmbeddedCuePlaylistPlugin.cxx index 2734fa59e..9ad71b8a8 100644 --- a/src/playlist/EmbeddedCuePlaylistPlugin.cxx +++ b/src/playlist/EmbeddedCuePlaylistPlugin.cxx @@ -178,7 +178,7 @@ const struct playlist_plugin embcue_playlist_plugin = { embcue_playlist_open_uri, nullptr, - embcue_playlist_suffixes, nullptr, + embcue_playlist_suffixes, nullptr, }; |