aboutsummaryrefslogtreecommitdiff
path: root/src/sftp.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-04-15 19:02:21 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-04-15 19:02:21 +0200
commitef658b4bef82670b6064078df355d6b6cf5ac999 (patch)
treed88754a00e1a87750e47271fe4bb7157d9ddfffb /src/sftp.c
parenta6c53d51de3601058d990d2f2d99649760cd3029 (diff)
downloadlibssh-ef658b4bef82670b6064078df355d6b6cf5ac999.tar.gz
libssh-ef658b4bef82670b6064078df355d6b6cf5ac999.tar.xz
libssh-ef658b4bef82670b6064078df355d6b6cf5ac999.zip
Fix assertion with Visual Studio because of %zu.
Diffstat (limited to 'src/sftp.c')
-rw-r--r--src/sftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sftp.c b/src/sftp.c
index 58859b7f..7cf0042c 100644
--- a/src/sftp.c
+++ b/src/sftp.c
@@ -1817,7 +1817,7 @@ ssize_t sftp_read(sftp_file handle, void *buf, size_t count) {
if (ssh_string_len(datastring) > count) {
ssh_set_error(sftp->session, SSH_FATAL,
"Received a too big DATA packet from sftp server: "
- "%zu and asked for %zu",
+ "%" PRIdS " and asked for %" PRIdS,
ssh_string_len(datastring), count);
ssh_string_free(datastring);
return -1;
@@ -1938,7 +1938,7 @@ int sftp_async_read(sftp_file file, void *data, uint32_t size, uint32_t id){
if (ssh_string_len(datastring) > size) {
ssh_set_error(sftp->session, SSH_FATAL,
"Received a too big DATA packet from sftp server: "
- "%zu and asked for %u",
+ "%" PRIdS " and asked for %u",
ssh_string_len(datastring), size);
ssh_string_free(datastring);
sftp_leave_function();