From: Fabian Keil <fk@fabiankeil.de>
Date: Fri, 11 Sep 2020 11:51:28 +0000 (+0200)
Subject: receive_chunked_client_request_body(): Fix format specifier in a log message
X-Git-Tag: v_3_0_29~135
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/developer-manual/man-page/faq/@proxy-info-url@?a=commitdiff_plain;h=0edfbba21bc8791bca1d450b18b3ce4e0b7c3334;p=privoxy.git

receive_chunked_client_request_body(): Fix format specifier in a log message
---

diff --git a/jcc.c b/jcc.c
index e78b901c..2f83e92f 100644
--- a/jcc.c
+++ b/jcc.c
@@ -1548,7 +1548,7 @@ static jb_err receive_chunked_client_request_body(struct client_state *csp)
       return JB_ERR_PARSE;
    }
    log_error(LOG_LEVEL_CONNECT,
-      "Chunked client body completely read. Length: %d", body_length);
+      "Chunked client body completely read. Length: %lu", body_length);
    csp->expected_client_content_length = body_length;
 
    return JB_ERR_OK;