mirror of
https://github.com/curl/curl.git
synced 2026-06-04 04:44:15 +03:00
cookie: use %zu to infof() for size_t values
Detected by Coverity. CID 1507051 Closes #9095
This commit is contained in:
parent
8ef0f35a04
commit
c5f3c47cbb
1 changed files with 1 additions and 1 deletions
|
|
@ -1436,7 +1436,7 @@ struct Cookie *Curl_cookie_getlist(struct Curl_easy *data,
|
|||
|
||||
matches++;
|
||||
if(matches >= MAX_COOKIE_SEND_AMOUNT) {
|
||||
infof(data, "Included max number of cookies (%u) in request!",
|
||||
infof(data, "Included max number of cookies (%zu) in request!",
|
||||
matches);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue