ClientProcess: cast enum to int before passing to printf()

Fixes gcc5 warning.
This commit is contained in:
Max Kellermann 2015-01-23 16:50:11 +01:00
parent 645554d12f
commit 30cb082932
2 changed files with 4 additions and 3 deletions

1
NEWS
View File

@ -1,4 +1,5 @@
ver 0.18.23 (not yet released) ver 0.18.23 (not yet released)
* fix gcc 5.0 warnings
ver 0.18.22 (2014/01/14) ver 0.18.22 (2014/01/14)
* fix clang 3.6 warnings * fix clang 3.6 warnings

View File

@ -41,7 +41,7 @@ client_process_command_list(Client &client, bool list_ok,
FormatDebug(client_domain, "process command \"%s\"", cmd); FormatDebug(client_domain, "process command \"%s\"", cmd);
ret = command_process(client, num++, cmd); ret = command_process(client, num++, cmd);
FormatDebug(client_domain, "command returned %i", ret); FormatDebug(client_domain, "command returned %i", int(ret));
if (ret != CommandResult::OK || client.IsExpired()) if (ret != CommandResult::OK || client.IsExpired())
break; break;
else if (list_ok) else if (list_ok)
@ -90,7 +90,7 @@ client_process_line(Client &client, char *line)
std::move(cmd_list)); std::move(cmd_list));
FormatDebug(client_domain, FormatDebug(client_domain,
"[%u] process command " "[%u] process command "
"list returned %i", client.num, ret); "list returned %i", client.num, int(ret));
if (ret == CommandResult::CLOSE || if (ret == CommandResult::CLOSE ||
client.IsExpired()) client.IsExpired())
@ -126,7 +126,7 @@ client_process_line(Client &client, char *line)
ret = command_process(client, 0, line); ret = command_process(client, 0, line);
FormatDebug(client_domain, FormatDebug(client_domain,
"[%u] command returned %i", "[%u] command returned %i",
client.num, ret); client.num, int(ret));
if (ret == CommandResult::CLOSE || if (ret == CommandResult::CLOSE ||
client.IsExpired()) client.IsExpired())