From 2da0322329643512fdef2131b3e8666989dd8f26 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 28 Feb 2014 22:13:34 +0100 Subject: command: make argc unsigned --- src/command/StorageCommands.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/command/StorageCommands.hxx') diff --git a/src/command/StorageCommands.hxx b/src/command/StorageCommands.hxx index 905cd636e..a3636d54a 100644 --- a/src/command/StorageCommands.hxx +++ b/src/command/StorageCommands.hxx @@ -32,12 +32,12 @@ CommandResult handle_listfiles_storage(Client &client, const char *uri); CommandResult -handle_listmounts(Client &client, int argc, char *argv[]); +handle_listmounts(Client &client, unsigned argc, char *argv[]); CommandResult -handle_mount(Client &client, int argc, char *argv[]); +handle_mount(Client &client, unsigned argc, char *argv[]); CommandResult -handle_unmount(Client &client, int argc, char *argv[]); +handle_unmount(Client &client, unsigned argc, char *argv[]); #endif -- cgit v1.2.3