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:03:02 +0200
commitb1d58c5454fc8d75be5f5b4fdcca582d089c0827 (patch)
tree751ea13f896372967d5a797e8135748a1582b52b /src/channels.c
parentced66eb11f48107a3354a39345c73422a4b33582 (diff)
Fix assertion with Visual Studio because of %zu.
(cherry picked from commit ef658b4bef82670b6064078df355d6b6cf5ac999)
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 b136332f..cd11ca77 100644
--- a/src/channels.c
+++ b/src/channels.c
@@ -474,7 +474,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,
@@ -483,7 +483,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);
}