mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
preproc.c: Get rid of signed/unsigned comparison warning
We need mac->nparam being explicictly int'fied otherwise compiler issue a warning. Note that we might have been using unsigned int but it would break an ability to pass negative indices. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
2df23513b3
commit
efb358339d
@ -3621,8 +3621,8 @@ static Token *expand_mmac_params_range(MMacro *mac, Token *tline, Token ***last)
|
||||
(lst > (int)mac->nparam || lst < (-(int)mac->nparam)))
|
||||
goto err;
|
||||
|
||||
fst = fst < 0 ? fst + mac->nparam + 1: fst;
|
||||
lst = lst < 0 ? lst + mac->nparam + 1: lst;
|
||||
fst = fst < 0 ? fst + (int)mac->nparam + 1: fst;
|
||||
lst = lst < 0 ? lst + (int)mac->nparam + 1: lst;
|
||||
|
||||
/* counted from zero */
|
||||
fst--, lst--;
|
||||
|
Loading…
x
Reference in New Issue
Block a user