diff options
author | Max Kellermann <max@duempel.org> | 2014-09-11 19:24:52 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-09-11 19:26:58 +0200 |
commit | a464dc681a64514ad7b8b8dbb7e4c64ea0561396 (patch) | |
tree | 7cd84bd8fcd394f73920d46a9628b79450f40cb3 /src/protocol | |
parent | af384d9aa6f216d3c5b890e3bd52140536c09686 (diff) | |
parent | eaf675dc92fbe0143fdc0e9c4234bd78a889decf (diff) |
Merge tag 'v0.18.14'
Diffstat (limited to 'src/protocol')
-rw-r--r-- | src/protocol/ArgParser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/ArgParser.cxx b/src/protocol/ArgParser.cxx index e3a0c107c..e373827b4 100644 --- a/src/protocol/ArgParser.cxx +++ b/src/protocol/ArgParser.cxx @@ -82,7 +82,7 @@ check_range(Client &client, unsigned *value_r1, unsigned *value_r2, /* compatibility with older MPD versions: specifying "-1" makes MPD display the whole list */ *value_r1 = 0; - *value_r2 = std::numeric_limits<unsigned>::max(); + *value_r2 = std::numeric_limits<int>::max(); return true; } @@ -109,7 +109,7 @@ check_range(Client &client, unsigned *value_r1, unsigned *value_r2, } if (test == test2) - value = std::numeric_limits<unsigned>::max(); + value = std::numeric_limits<int>::max(); if (value < 0) { command_error(client, ACK_ERROR_ARG, |