mirror of
https://github.com/emikulic/darkhttpd.git
synced 2023-08-10 21:13:08 +03:00
Obvious %lld -> %llu correction.
Caught with cppcheck. I have no idea why it wasn't caught earlier.
This commit is contained in:
parent
ae676feaeb
commit
27c899c165
@ -2341,7 +2341,7 @@ static void poll_send_reply(struct connection *conn)
|
|||||||
}
|
}
|
||||||
conn->last_active = now;
|
conn->last_active = now;
|
||||||
if (debug)
|
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),
|
conn->socket, (int)sent, llu(conn->reply_start),
|
||||||
llu(conn->reply_sent), llu(conn->reply_sent + sent - 1),
|
llu(conn->reply_sent), llu(conn->reply_sent + sent - 1),
|
||||||
llu(conn->reply_length));
|
llu(conn->reply_length));
|
||||||
|
Loading…
Reference in New Issue
Block a user