summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--preproc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/preproc.c b/preproc.c
index 0dfc3a43..1b0c74a2 100644
--- a/preproc.c
+++ b/preproc.c
@@ -3617,10 +3617,8 @@ static Token *expand_mmac_params_range(MMacro *mac, Token *tline, Token ***last)
goto err;
/* the values should be sane */
- if ((fst > 0 && fst > mac->nparam) ||
- (fst < 0 && fst < -(int)mac->nparam) ||
- (lst > 0 && lst > mac->nparam) ||
- (lst < 0 && lst < -(int)mac->nparam))
+ if ((fst > (int)mac->nparam || fst < (-(int)mac->nparam)) ||
+ (lst > (int)mac->nparam || lst < (-(int)mac->nparam)))
goto err;
fst = fst < 0 ? fst + mac->nparam + 1: fst;