1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-02 22:02:24 +03:00

channels: Fixed a build warning.

This commit is contained in:
Andreas Schneider
2010-12-23 10:18:09 +01:00
parent 33c41074a7
commit 38b87aab08

View File

@ -1132,7 +1132,7 @@ int channel_write_common(ssh_channel channel, const void *data,
} }
ssh_log(session, SSH_LOG_RARE, ssh_log(session, SSH_LOG_RARE,
"channel_write wrote %ld bytes", effectivelen); "channel_write wrote %ld bytes", (long int) effectivelen);
channel->remote_window -= effectivelen; channel->remote_window -= effectivelen;
len -= effectivelen; len -= effectivelen;