summaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorRikard Falkeborn <rikard.falkeborn@gmail.com>2020-11-23 22:42:07 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-11-24 13:18:41 +0100
commit920f49a20be51170ec1804f2736ea3e2593cdbe5 (patch)
tree2763cccabd025becc428bcb90b6690a98281978d /lib/http.c
parent020aa0131bfa733b2a4bd62a010389f9871832df (diff)
downloadcurl-920f49a20be51170ec1804f2736ea3e2593cdbe5.tar.gz
infof/failf calls: fix format specifiers
Update a few format specifiers to match what is being printed. Closes #6241
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index d73f83901..c232ed413 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -4003,7 +4003,7 @@ CURLcode Curl_http_readwrite_headers(struct Curl_easy *data,
infof(data, "Illegal STS header skipped\n");
#ifdef DEBUGBUILD
else
- infof(data, "Parsed STS header fine (%d entries)\n",
+ infof(data, "Parsed STS header fine (%zu entries)\n",
data->hsts->list.size);
#endif
}