summaryrefslogtreecommitdiffstats
path: root/src/channels.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/channels.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/channels.c')
-rw-r--r--src/channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channels.c b/src/channels.c
index ad1ed81..15e1e66 100644
--- a/src/channels.c
+++ b/src/channels.c
@@ -478,7 +478,7 @@ SSH_PACKET_CALLBACK(channel_rcv_data){
len = ssh_string_len(str);
ssh_log(session, SSH_LOG_PROTOCOL,
- "Channel receiving %zu bytes data in %d (local win=%d remote win=%d)",
+ "Channel receiving %" PRIdS " bytes data in %d (local win=%d remote win=%d)",
len,
is_stderr,
channel->local_window,
@@ -487,7 +487,7 @@ SSH_PACKET_CALLBACK(channel_rcv_data){
/* What shall we do in this case? Let's accept it anyway */
if (len > channel->local_window) {
ssh_log(session, SSH_LOG_RARE,
- "Data packet too big for our window(%zu vs %d)",
+ "Data packet too big for our window(%" PRIdS " vs %d)",
len,
channel->local_window);
}