From fc840d8d690ec86447f47747e776b08b095f9365 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 21 Nov 2018 13:26:16 +0100 Subject: [PATCH] poll: Fix size type Signed-off-by: Andreas Schneider --- src/poll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poll.c b/src/poll.c index 8c4446d0..2f6d1c4b 100644 --- a/src/poll.c +++ b/src/poll.c @@ -594,7 +594,7 @@ void ssh_poll_ctx_remove(ssh_poll_ctx ctx, ssh_poll_handle p) { int ssh_poll_ctx_dopoll(ssh_poll_ctx ctx, int timeout) { int rc; - int i, used; + size_t i, used; ssh_poll_handle p; socket_t fd; int revents;