ws: the infof() flags should be %zu

Follow-up to e5e9e0c5e4

Closes #9518
This commit is contained in:
Daniel Stenberg 2022-09-16 17:18:16 +02:00
parent 79e404d039
commit ec51f00480
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -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;
}