summaryrefslogtreecommitdiff
path: root/lib/ws.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-09-16 17:18:16 +0200
committerDaniel Stenberg <daniel@haxx.se>2022-09-16 21:35:15 +0200
commitec51f00480495113a81d32606e7745342038bddd (patch)
tree6490a9d37d77214b77d653882907b9051f707170 /lib/ws.c
parent79e404d039008c428116e12f4f20e5f27ec003d6 (diff)
downloadcurl-ec51f00480495113a81d32606e7745342038bddd.tar.gz
ws: the infof() flags should be %zu
Follow-up to e5e9e0c5e49ae0 Closes #9518
Diffstat (limited to 'lib/ws.c')
-rw-r--r--lib/ws.c2
1 files changed, 1 insertions, 1 deletions
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;
}