mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:33:31 +03:00
fix printf-style format strings
This commit is contained in:
parent
ddab9bd2ec
commit
d65cf7889b
9 changed files with 26 additions and 25 deletions
|
|
@ -1617,7 +1617,7 @@ CURLcode Curl_follow(struct SessionHandle *data,
|
|||
if(type == FOLLOW_REDIR) {
|
||||
if((data->set.maxredirs != -1) &&
|
||||
(data->set.followlocation >= data->set.maxredirs)) {
|
||||
failf(data,"Maximum (%d) redirects followed", data->set.maxredirs);
|
||||
failf(data,"Maximum (%ld) redirects followed", data->set.maxredirs);
|
||||
return CURLE_TOO_MANY_REDIRECTS;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue