aboutgitcodebugslistschat
path: root/fwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'fwd.c')
-rw-r--r--fwd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fwd.c b/fwd.c
index c71f5e1..0b7f8b1 100644
--- a/fwd.c
+++ b/fwd.c
@@ -75,8 +75,8 @@ void fwd_probe_ephemeral(void)
if (*end || errno)
goto parse_err;
- if (min < 0 || min >= NUM_PORTS ||
- max < 0 || max >= NUM_PORTS)
+ if (min < 0 || min >= (long)NUM_PORTS ||
+ max < 0 || max >= (long)NUM_PORTS)
goto parse_err;
fwd_ephemeral_min = min;