diff options
author | Max Kellermann <max@duempel.org> | 2014-02-04 01:15:08 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-04 01:15:08 +0100 |
commit | 9c637df77ec245518922c5aeb076ae52c89598d0 (patch) | |
tree | 904a90b1135d070347c1e2ff0e935ccbada358cc /src/command | |
parent | 29072797ca5a397b2878e458db22cb5dcc7dfe4d (diff) | |
download | mpd-9c637df77ec245518922c5aeb076ae52c89598d0.tar.gz mpd-9c637df77ec245518922c5aeb076ae52c89598d0.tar.xz mpd-9c637df77ec245518922c5aeb076ae52c89598d0.zip |
SongSticker: add Database reference parameter
Diffstat (limited to '')
-rw-r--r-- | src/command/StickerCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/StickerCommands.cxx b/src/command/StickerCommands.cxx index 5234e2da8..ee772475f 100644 --- a/src/command/StickerCommands.cxx +++ b/src/command/StickerCommands.cxx @@ -133,7 +133,7 @@ handle_sticker_song(Client &client, int argc, char *argv[]) argv[4], }; - success = sticker_song_find(base_uri, data.name, + success = sticker_song_find(*db, base_uri, data.name, sticker_song_find_print_cb, &data); if (!success) { command_error(client, ACK_ERROR_SYSTEM, |