diff options
author | Max Kellermann <max@duempel.org> | 2015-01-28 19:33:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-01-28 19:33:56 +0100 |
commit | 593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced (patch) | |
tree | db35a7f10c5f9f0e01f59d928dc02c1b72db58e0 /src/command | |
parent | 822ac7b100e6d0ed876ec8c6dea09f3ab0809655 (diff) | |
download | mpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.tar.gz mpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.tar.xz mpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.zip |
StickerDatabase: convert the struct name to upper case
Diffstat (limited to 'src/command')
-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 9dfe6f80d..8979d53a4 100644 --- a/src/command/StickerCommands.cxx +++ b/src/command/StickerCommands.cxx @@ -88,7 +88,7 @@ handle_sticker_song(Client &client, ConstBuffer<const char *> args) if (song == nullptr) return print_error(client, error); - sticker *sticker = sticker_song_get(*song, error); + Sticker *sticker = sticker_song_get(*song, error); db->ReturnSong(song); if (sticker) { sticker_print(client, *sticker); |