aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/OutputCommands.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-28 22:13:34 +0100
committerMax Kellermann <max@duempel.org>2014-06-16 19:50:34 +0200
commit2da0322329643512fdef2131b3e8666989dd8f26 (patch)
tree3d7109d87ce4bb4d334d421816311881ffdda435 /src/command/OutputCommands.hxx
parentfefb35c782141b96a118dc09bddc9d588b4c2d82 (diff)
downloadmpd-2da0322329643512fdef2131b3e8666989dd8f26.tar.gz
mpd-2da0322329643512fdef2131b3e8666989dd8f26.tar.xz
mpd-2da0322329643512fdef2131b3e8666989dd8f26.zip
command: make argc unsigned
Diffstat (limited to 'src/command/OutputCommands.hxx')
-rw-r--r--src/command/OutputCommands.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/command/OutputCommands.hxx b/src/command/OutputCommands.hxx
index c12c14049..8d6be0511 100644
--- a/src/command/OutputCommands.hxx
+++ b/src/command/OutputCommands.hxx
@@ -25,15 +25,15 @@
class Client;
CommandResult
-handle_enableoutput(Client &client, int argc, char *argv[]);
+handle_enableoutput(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_disableoutput(Client &client, int argc, char *argv[]);
+handle_disableoutput(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_toggleoutput(Client &client, int argc, char *argv[]);
+handle_toggleoutput(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_devices(Client &client, int argc, char *argv[]);
+handle_devices(Client &client, unsigned argc, char *argv[]);
#endif