diff options
Diffstat (limited to 'src/cyn-server.c')
-rw-r--r-- | src/cyn-server.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cyn-server.c b/src/cyn-server.c index d751fda..78143a4 100644 --- a/src/cyn-server.c +++ b/src/cyn-server.c @@ -120,13 +120,13 @@ void dolog( client_t *cli, int c2s, - int count, + unsigned count, const char *fields[] ) { static const char types[3][6] = { "check", "agent", "admin" }; static const char dir[2] = { '>', '<' }; - int i; + unsigned i; fprintf(stderr, "%p%c%c%s", cli, dir[!c2s], dir[!c2s], types[cli->type]); for (i = 0 ; i < count ; i++) @@ -354,7 +354,7 @@ static void onrequest( client_t *cli, - int count, + unsigned count, const char *args[] ) { bool nextlog; @@ -565,7 +565,7 @@ on_client_event( goto terminate; nargs = prot_get(cli->prot, &args); while (nargs >= 0) { - onrequest(cli, nargs, args); + onrequest(cli, (unsigned)nargs, args); if (cli->invalid && !cli->relax) goto terminate; prot_next(cli->prot); |