change var type in debug statement to unsigned long long (#662)
This commit is contained in:
parent
3c307af901
commit
e3be0b7b57
2
scp.c
2
scp.c
|
@ -785,7 +785,7 @@ main(int argc, char **argv)
|
|||
if (sftp_copy_buflen > MAX_SFTP_COPY_BUFLEN) {
|
||||
if (verbose_mode)
|
||||
fmprintf(stderr,
|
||||
"Buffer value of %d is too large for Win32-OpenSSH. Setting buffer to %d\n",
|
||||
"Buffer value of %llu is too large for Win32-OpenSSH. Setting buffer to %d\n",
|
||||
sftp_copy_buflen, MAX_SFTP_COPY_BUFLEN);
|
||||
sftp_copy_buflen = MAX_SFTP_COPY_BUFLEN;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue