Skip to content

Commit e3be0b7

Browse files
authored
change var type in debug statement to unsigned long long (#662)
1 parent 3c307af commit e3be0b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ main(int argc, char **argv)
785785
if (sftp_copy_buflen > MAX_SFTP_COPY_BUFLEN) {
786786
if (verbose_mode)
787787
fmprintf(stderr,
788-
"Buffer value of %d is too large for Win32-OpenSSH. Setting buffer to %d\n",
788+
"Buffer value of %llu is too large for Win32-OpenSSH. Setting buffer to %d\n",
789789
sftp_copy_buflen, MAX_SFTP_COPY_BUFLEN);
790790
sftp_copy_buflen = MAX_SFTP_COPY_BUFLEN;
791791
}

0 commit comments

Comments
 (0)