aboutsummaryrefslogtreecommitdiff
path: root/libssh/channels.c
diff options
context:
space:
mode:
Diffstat (limited to 'libssh/channels.c')
-rw-r--r--libssh/channels.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libssh/channels.c b/libssh/channels.c
index 09df81d..57c8dc8 100644
--- a/libssh/channels.c
+++ b/libssh/channels.c
@@ -113,9 +113,9 @@ static int channel_open(CHANNEL *channel,char *type_c,int window,
channel->local_channel,
channel->remote_channel);
ssh_log(session, SSH_LOG_PROTOCOL,
- "Remote window : %ld, maxpacket : %ld",
- channel->remote_window,
- channel->remote_maxpacket);
+ "Remote window : %lu, maxpacket : %lu",
+ (long unsigned int) channel->remote_window,
+ (long unsigned int) channel->remote_maxpacket);
channel->open=1;
leave_function();
return 0;