summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/reqs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reqs.c b/src/reqs.c
index b4259a8..5ee9382 100644
--- a/src/reqs.c
+++ b/src/reqs.c
@@ -126,7 +126,7 @@ check_allowed_connect_ports (int port)
if (!ports_allowed_by_connect)
return 0;
- for (i = 0; i != vector_length (ports_allowed_by_connect); ++i)
+ for (i = 0; i != (size_t)vector_length (ports_allowed_by_connect); ++i)
{
data = vector_getentry (ports_allowed_by_connect, i, NULL);
if (data && *data == port)