http: use %u for printfing int

Follow-up to 3ee79c1674

Closes #11587
This commit is contained in:
Daniel Stenberg 2023-08-04 08:45:39 +02:00
parent ae91bb7e1a
commit a2a894f550
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -3935,7 +3935,7 @@ CURLcode Curl_bump_headersize(struct Curl_easy *data,
else
bad = data->info.header_size + delta;
if(bad) {
failf(data, "Too large response headers: %zu > %zu",
failf(data, "Too large response headers: %zu > %u",
bad, MAX_HTTP_RESP_HEADER_SIZE);
return CURLE_RECV_ERROR;
}