From ec51f00480495113a81d32606e7745342038bddd Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 16 Sep 2022 17:18:16 +0200 Subject: ws: the infof() flags should be %zu Follow-up to e5e9e0c5e49ae0 Closes #9518 --- lib/ws.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ws.c') diff --git a/lib/ws.c b/lib/ws.c index b7ae01835..f045e5aef 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; } -- cgit v1.2.1