From 27c899c165422860a8644f79f97a16bc171062a8 Mon Sep 17 00:00:00 2001 From: Emil Mikulic Date: Sat, 23 Jan 2016 20:13:17 +1100 Subject: [PATCH] Obvious %lld -> %llu correction. Caught with cppcheck. I have no idea why it wasn't caught earlier. --- darkhttpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/darkhttpd.c b/darkhttpd.c index 349513b..41dfa69 100644 --- a/darkhttpd.c +++ b/darkhttpd.c @@ -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));