From: Daniel Stenberg Date: Fri, 16 Sep 2022 15:18:16 +0000 (+0200) Subject: ws: the infof() flags should be %zu X-Git-Tag: curl-7_86_0~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec51f00480495113a81d32606e7745342038bddd;p=thirdparty%2Fcurl.git ws: the infof() flags should be %zu Follow-up to e5e9e0c5e49ae0 Closes #9518 --- diff --git a/lib/ws.c b/lib/ws.c index b7ae018351..f045e5aefd 100644 --- a/lib/ws.c +++ b/lib/ws.c @@ -294,7 +294,7 @@ static CURLcode ws_decode(struct Curl_easy *data, *olen = payloadssize; wsp->usedbuf = total; /* number of bytes "used" from the buffer */ *endp = &p[total]; - infof(data, "WS: received %uz bytes payload", payloadssize); + infof(data, "WS: received %zu bytes payload", payloadssize); return CURLE_OK; }