Obvious %lld -> %llu correction.

Caught with cppcheck.
I have no idea why it wasn't caught earlier.
This commit is contained in:
Emil Mikulic 2016-01-23 20:13:17 +11:00
parent ae676feaeb
commit 27c899c165
1 changed files with 1 additions and 1 deletions

View File

@ -2341,7 +2341,7 @@ static void poll_send_reply(struct connection *conn)
}
conn->last_active = now;
if (debug)
printf("poll_send_reply(%d) sent %d: %lld+[%lld-%lld] of %lld\n",
printf("poll_send_reply(%d) sent %d: %llu+[%llu-%llu] of %llu\n",
conn->socket, (int)sent, llu(conn->reply_start),
llu(conn->reply_sent), llu(conn->reply_sent + sent - 1),
llu(conn->reply_length));