aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordy Moos <jordy@pbwebmedia.com>2015-06-12 15:16:43 +0200
committerAndreas Schneider <asn@cryptomilk.org>2015-06-24 17:13:26 +0200
commitfa9fbb1d670e1ee99ba8c5255c2d80ac699496e4 (patch)
tree041e4eb2aa342ee94922b21a07a867e8fa772472
parentef751a26d0cb746966aaee64cfb5d1a87efba535 (diff)
downloadlibssh-fa9fbb1d670e1ee99ba8c5255c2d80ac699496e4.tar.gz
libssh-fa9fbb1d670e1ee99ba8c5255c2d80ac699496e4.tar.xz
libssh-fa9fbb1d670e1ee99ba8c5255c2d80ac699496e4.zip
Documentation fix where unsigned is used where signed is expected
Signed-off-by: Jordy Moos <jordymoos@gmail.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--doc/command.dox2
-rw-r--r--doc/guided_tour.dox4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/command.dox b/doc/command.dox
index 76113543..588151c6 100644
--- a/doc/command.dox
+++ b/doc/command.dox
@@ -56,7 +56,7 @@ If an error has been encountered, it returns a negative value:
@code
char buffer[256];
- unsigned int nbytes;
+ int nbytes;
nbytes = ssh_channel_read(channel, buffer, sizeof(buffer), 0);
while (nbytes > 0)
diff --git a/doc/guided_tour.dox b/doc/guided_tour.dox
index ecd637e1..94449e19 100644
--- a/doc/guided_tour.dox
+++ b/doc/guided_tour.dox
@@ -367,7 +367,7 @@ int show_remote_processes(ssh_session session)
ssh_channel channel;
int rc;
char buffer[256];
- unsigned int nbytes;
+ int nbytes;
channel = ssh_channel_new(session);
if (channel == NULL)
@@ -391,7 +391,7 @@ int show_remote_processes(ssh_session session)
nbytes = ssh_channel_read(channel, buffer, sizeof(buffer), 0);
while (nbytes > 0)
{
- if (write(1, buffer, nbytes) != nbytes)
+ if (write(1, buffer, nbytes) != (unsigned int) nbytes)
{
ssh_channel_close(channel);
ssh_channel_free(channel);