1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-29 01:03:57 +03:00

options: Fix compiler warning on Windows.

This commit is contained in:
Andreas Schneider
2013-07-22 10:20:44 +02:00
parent 2c9808daf8
commit 329f4da1e1

View File

@@ -936,7 +936,8 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
char *cipher = NULL;
char *identity = NULL;
char *port = NULL;
char **save = NULL, **tmp;
char **save = NULL;
char **tmp = NULL;
int i = 0;
int argc = *argcptr;
int debuglevel = 0;