From d020ba9cc88aad53752310dfd59be513000e1433 Mon Sep 17 00:00:00 2001 From: Emil Mikulic Date: Fri, 4 May 2012 01:03:13 +1000 Subject: [PATCH] Fix format warning. --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index 4010587..016d7e2 100644 --- a/http.c +++ b/http.c @@ -382,7 +382,7 @@ static void generate_header(struct connection *conn, if (conn->encoding == NULL) conn->encoding = encoding_identity; - verbosef("http: %d %s (%s: %d bytes)", code, text, + verbosef("http: %d %s (%s: %zu bytes)", code, text, conn->encoding, conn->reply_length); conn->header_length = xasprintf(&(conn->header), "HTTP/1.1 %d %s\r\n" -- 2.17.1