From eb98a780ed11cf83d2265a8a57c07419516c54de Mon Sep 17 00:00:00 2001 From: Jordy Moos Date: Fri, 12 Jun 2015 15:16:43 +0200 Subject: Documentation fix where unsigned is used where signed is expected Signed-off-by: Jordy Moos Reviewed-by: Andreas Schneider (cherry picked from commit fa9fbb1d670e1ee99ba8c5255c2d80ac699496e4) --- doc/command.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/command.dox') 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) -- cgit