mirror of
https://github.com/curl/curl.git
synced 2026-05-05 14:17:33 +03:00
h2h3: pass correct argument types to infof()
Detected by Coverity. CID 1497993 Closes #8401
This commit is contained in:
parent
93767237c4
commit
5c55fe6df6
1 changed files with 2 additions and 2 deletions
|
|
@ -281,8 +281,8 @@ CURLcode Curl_pseudo_headers(struct Curl_easy *data,
|
|||
acc += nva[i].namelen + nva[i].valuelen;
|
||||
|
||||
infof(data, "h2h3 [%.*s: %.*s]",
|
||||
nva[i].namelen, nva[i].name,
|
||||
nva[i].valuelen, nva[i].value);
|
||||
(int)nva[i].namelen, nva[i].name,
|
||||
(int)nva[i].valuelen, nva[i].value);
|
||||
}
|
||||
|
||||
if(acc > MAX_ACC) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue