From 119a457357bbf225c032dd559dc098449e4fcdf7 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 24 Aug 2018 07:31:39 +0200 Subject: [PATCH] options: Fix size types Signed-off-by: Andreas Schneider --- src/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.c b/src/options.c index 03d4adcd..0e428e65 100644 --- a/src/options.c +++ b/src/options.c @@ -1092,7 +1092,7 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) int usedss = 0; int compress = 0; int cont = 1; - int current = 0; + size_t current = 0; int saveoptind = optind; /* need to save 'em */ int saveopterr = opterr; int opt;