From 0a46690eca88af92e24c4e659dd3066734794f6d Mon Sep 17 00:00:00 2001
From: Andreas Schneider <asn@cryptomilk.org>
Date: Wed, 22 Aug 2018 08:40:50 +0200
Subject: [PATCH] options: Fix size types

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
---
 src/options.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/options.c b/src/options.c
index 87c5bb42..fc231650 100644
--- a/src/options.c
+++ b/src/options.c
@@ -1077,7 +1077,7 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
   char *port = NULL;
   char **save = NULL;
   char **tmp = NULL;
-  int i = 0;
+  size_t i = 0;
   int argc = *argcptr;
   int debuglevel = 0;
   int usersa = 0;