diff options
author | Max Kellermann <max@duempel.org> | 2013-10-21 20:31:34 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-21 20:31:34 +0200 |
commit | 72af3c0489f8bc417189b6dd48b8db4f380e4ba3 (patch) | |
tree | 268fc2b8579d67d8d1c14acf7d054f09c2500820 /src/UpdateSong.cxx | |
parent | 65e54f6ed1152002ba736c6e30518a934f82a7fe (diff) | |
download | mpd-72af3c0489f8bc417189b6dd48b8db4f380e4ba3.tar.gz mpd-72af3c0489f8bc417189b6dd48b8db4f380e4ba3.tar.xz mpd-72af3c0489f8bc417189b6dd48b8db4f380e4ba3.zip |
decoder_plugin: rename struct to DecoderPlugin
Diffstat (limited to '')
-rw-r--r-- | src/UpdateSong.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/UpdateSong.cxx b/src/UpdateSong.cxx index 084c57721..7b9590e50 100644 --- a/src/UpdateSong.cxx +++ b/src/UpdateSong.cxx @@ -36,7 +36,7 @@ static void update_song_file2(Directory &directory, const char *name, const struct stat *st, - const decoder_plugin &plugin) + const DecoderPlugin &plugin) { db_lock(); Song *song = directory.FindSong(name); @@ -106,7 +106,7 @@ update_song_file(Directory &directory, const char *name, const char *suffix, const struct stat *st) { - const struct decoder_plugin *plugin = + const struct DecoderPlugin *plugin = decoder_plugin_from_suffix(suffix, nullptr); if (plugin == nullptr) return false; |