cookie: use %zu to infof() for size_t values

Detected by Coverity. CID 1507051
Closes #9095
This commit is contained in:
Daniel Stenberg 2022-07-04 12:48:10 +02:00
parent 8ef0f35a04
commit c5f3c47cbb
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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;
}