Fix errors in make develop

This commit is contained in:
ISSOtm
2019-10-30 13:34:21 +01:00
parent e93d65d736
commit f7c2665e14
4 changed files with 6 additions and 6 deletions

View File

@@ -371,7 +371,7 @@ char *sym_FindMacroArg(int32_t i)
if (i == -1)
i = MAXMACROARGS + 1;
assert(i - 1 >= 0);
assert(i >= 1);
assert((size_t)(i - 1)
< sizeof(currentmacroargs) / sizeof(*currentmacroargs));