1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-07-28 01:41:49 +03:00

tidy-up: do/while formatting

Also fix an indentation and delete empty lines.

Closes #1440
This commit is contained in:
Viktor Szakats
2024-08-06 04:05:17 +02:00
parent 8ae1b2d742
commit 29a4b607d8
7 changed files with 7 additions and 16 deletions

View File

@ -251,8 +251,7 @@ int main(int argc, char *argv[])
fprintf(stderr, "libssh2_channel_read returned %ld\n",
(long)nread);
}
}
while(nread > 0);
} while(nread > 0);
/* this is due to blocking that would occur otherwise so we loop on
this condition */