1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-08-07 08:02:56 +03:00

examples: remove assignments of variable rc that's never used

This commit is contained in:
Daniel Stenberg
2010-04-28 09:05:19 +02:00
parent 514f4d9305
commit 0862a1a39a
4 changed files with 12 additions and 12 deletions

View File

@@ -209,7 +209,8 @@ int main(int argc, char *argv[])
shutdown:
while ((rc = libssh2_session_disconnect(session, "Normal Shutdown, Thank you for playing")) == LIBSSH2_ERROR_EAGAIN);
while (libssh2_session_disconnect(session, "Normal Shutdown, Thank you for playing")
== LIBSSH2_ERROR_EAGAIN);
libssh2_session_free(session);
#ifdef WIN32