summaryrefslogtreecommitdiffstats
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 18:36:08 +0200
commiteb98a780ed11cf83d2265a8a57c07419516c54de (patch)
treee45bae79fc8977a7f78482e07a37ec2f436e29c5 /doc/command.dox
parent64233fa3bbedd338c216136babafdbfc68b094bb (diff)
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> (cherry picked from commit fa9fbb1d670e1ee99ba8c5255c2d80ac699496e4)
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)