mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Fix some signed/unsigned comparison warnings
Signed-off-by: AntonioND <antonio_nd@outlook.com>
This commit is contained in:
@@ -378,8 +378,9 @@ sym_FindMacroArg(SLONG i)
|
||||
if (i == -1)
|
||||
i = MAXMACROARGS + 1;
|
||||
|
||||
assert(i-1 >= 0 &&
|
||||
i-1 < sizeof currentmacroargs / sizeof *currentmacroargs);
|
||||
assert(i-1 >= 0);
|
||||
assert((size_t)(i-1) < sizeof(currentmacroargs)/sizeof(*currentmacroargs));
|
||||
|
||||
return (currentmacroargs[i - 1]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user