diff options
Diffstat (limited to 'src/tool_paramhlp.c')
-rw-r--r-- | src/tool_paramhlp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_paramhlp.c b/src/tool_paramhlp.c index c26754aeb..c1baed5f0 100644 --- a/src/tool_paramhlp.c +++ b/src/tool_paramhlp.c @@ -426,7 +426,7 @@ static CURLcode checkpasswd(const char *kind, /* for what purpose */ curlx_msnprintf(prompt, sizeof(prompt), "Enter %s password for user '%s' on URL #%" CURL_FORMAT_CURL_OFF_TU ":", - kind, *userpwd, i + 1); + kind, *userpwd, (curl_off_t) (i + 1)); /* get password */ getpass_r(prompt, passwd, sizeof(passwd)); |