aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/TagCommands.cxx
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/TagCommands.cxx
parentfefb35c782141b96a118dc09bddc9d588b4c2d82 (diff)
downloadmpd-2da0322329643512fdef2131b3e8666989dd8f26.tar.gz
mpd-2da0322329643512fdef2131b3e8666989dd8f26.tar.xz
mpd-2da0322329643512fdef2131b3e8666989dd8f26.zip
command: make argc unsigned
Diffstat (limited to 'src/command/TagCommands.cxx')
-rw-r--r--src/command/TagCommands.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/TagCommands.cxx b/src/command/TagCommands.cxx
index 02e95af71..2d537671c 100644
--- a/src/command/TagCommands.cxx
+++ b/src/command/TagCommands.cxx
@@ -27,7 +27,7 @@
#include "Partition.hxx"
CommandResult
-handle_addtagid(Client &client, gcc_unused int argc, char *argv[])
+handle_addtagid(Client &client, gcc_unused unsigned argc, char *argv[])
{
unsigned song_id;
if (!check_unsigned(client, &song_id, argv[1]))
@@ -52,7 +52,7 @@ handle_addtagid(Client &client, gcc_unused int argc, char *argv[])
}
CommandResult
-handle_cleartagid(Client &client, int argc, char *argv[])
+handle_cleartagid(Client &client, unsigned argc, char *argv[])
{
unsigned song_id;
if (!check_unsigned(client, &song_id, argv[1]))