1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

Fix build warnings.

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@273 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
Andreas Schneider
2009-03-14 15:14:18 +00:00
parent 453b91903b
commit 08e2408896
5 changed files with 17 additions and 10 deletions

View File

@@ -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;