aboutsummaryrefslogtreecommitdiffstats
path: root/src/sticker/StickerPrint.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-01-28 19:33:56 +0100
committerMax Kellermann <max@duempel.org>2015-01-28 19:33:56 +0100
commit593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced (patch)
treedb35a7f10c5f9f0e01f59d928dc02c1b72db58e0 /src/sticker/StickerPrint.hxx
parent822ac7b100e6d0ed876ec8c6dea09f3ab0809655 (diff)
downloadmpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.tar.gz
mpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.tar.xz
mpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.zip
StickerDatabase: convert the struct name to upper case
Diffstat (limited to 'src/sticker/StickerPrint.hxx')
-rw-r--r--src/sticker/StickerPrint.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sticker/StickerPrint.hxx b/src/sticker/StickerPrint.hxx
index c927567a7..53aaca8df 100644
--- a/src/sticker/StickerPrint.hxx
+++ b/src/sticker/StickerPrint.hxx
@@ -20,7 +20,7 @@
#ifndef MPD_STICKER_PRINT_HXX
#define MPD_STICKER_PRINT_HXX
-struct sticker;
+struct Sticker;
class Client;
/**
@@ -33,6 +33,6 @@ sticker_print_value(Client &client, const char *name, const char *value);
* Sends all sticker values to the client.
*/
void
-sticker_print(Client &client, const sticker &sticker);
+sticker_print(Client &client, const Sticker &sticker);
#endif