aboutsummaryrefslogtreecommitdiff
path: root/doc/command.dox
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 /doc/command.dox
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>
Diffstat (limited to 'doc/command.dox')
-rw-r--r--doc/command.dox2
1 files changed, 1 insertions, 1 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)