summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 575824ad..bfbf2819 100644
--- a/eval.c
+++ b/eval.c
@@ -406,7 +406,7 @@ static expr *rexp3(int critical)
TOKEN_GE ? ">=" : ">"));
v = 0; /* must set it to _something_ */
} else {
- int vv = reloc_value(e);
+ int64_t vv = reloc_value(e);
if (vv == 0)
v = (j == TOKEN_LE || j == TOKEN_GE);
else if (vv > 0)