diff options
author | Max Kellermann <max@duempel.org> | 2014-02-28 22:13:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-06-16 19:50:34 +0200 |
commit | 2da0322329643512fdef2131b3e8666989dd8f26 (patch) | |
tree | 3d7109d87ce4bb4d334d421816311881ffdda435 /src/command/FileCommands.cxx | |
parent | fefb35c782141b96a118dc09bddc9d588b4c2d82 (diff) | |
download | mpd-2da0322329643512fdef2131b3e8666989dd8f26.tar.gz mpd-2da0322329643512fdef2131b3e8666989dd8f26.tar.xz mpd-2da0322329643512fdef2131b3e8666989dd8f26.zip |
command: make argc unsigned
Diffstat (limited to 'src/command/FileCommands.cxx')
-rw-r--r-- | src/command/FileCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/FileCommands.cxx b/src/command/FileCommands.cxx index 7b69b0bd9..0a4f9592a 100644 --- a/src/command/FileCommands.cxx +++ b/src/command/FileCommands.cxx @@ -201,7 +201,7 @@ read_file_comments(Client &client, const Path path_fs) } CommandResult -handle_read_comments(Client &client, gcc_unused int argc, char *argv[]) +handle_read_comments(Client &client, gcc_unused unsigned argc, char *argv[]) { assert(argc == 2); |