aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/PlaylistCommands.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/PlaylistCommands.hxx
parentfefb35c782141b96a118dc09bddc9d588b4c2d82 (diff)
downloadmpd-2da0322329643512fdef2131b3e8666989dd8f26.tar.gz
mpd-2da0322329643512fdef2131b3e8666989dd8f26.tar.xz
mpd-2da0322329643512fdef2131b3e8666989dd8f26.zip
command: make argc unsigned
Diffstat (limited to '')
-rw-r--r--src/command/PlaylistCommands.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/command/PlaylistCommands.hxx b/src/command/PlaylistCommands.hxx
index c737c54eb..fba4e1318 100644
--- a/src/command/PlaylistCommands.hxx
+++ b/src/command/PlaylistCommands.hxx
@@ -25,36 +25,36 @@
class Client;
CommandResult
-handle_save(Client &client, int argc, char *argv[]);
+handle_save(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_load(Client &client, int argc, char *argv[]);
+handle_load(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_listplaylist(Client &client, int argc, char *argv[]);
+handle_listplaylist(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_listplaylistinfo(Client &client, int argc, char *argv[]);
+handle_listplaylistinfo(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_rm(Client &client, int argc, char *argv[]);
+handle_rm(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_rename(Client &client, int argc, char *argv[]);
+handle_rename(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_playlistdelete(Client &client, int argc, char *argv[]);
+handle_playlistdelete(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_playlistmove(Client &client, int argc, char *argv[]);
+handle_playlistmove(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_playlistclear(Client &client, int argc, char *argv[]);
+handle_playlistclear(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_playlistadd(Client &client, int argc, char *argv[]);
+handle_playlistadd(Client &client, unsigned argc, char *argv[]);
CommandResult
-handle_listplaylists(Client &client, int argc, char *argv[]);
+handle_listplaylists(Client &client, unsigned argc, char *argv[]);
#endif