mirror of
https://github.com/curl/curl.git
synced 2026-07-26 10:28:01 +03:00
ws: the infof() flags should be %zu
Follow-up to e5e9e0c5e4
Closes #9518
This commit is contained in:
parent
79e404d039
commit
ec51f00480
1 changed files with 1 additions and 1 deletions
2
lib/ws.c
2
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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue