Merge pull request #444 from ISSOtm/fix_develop

Fix errors in `make develop`
This commit is contained in:
Eldred Habert
2019-11-06 08:34:37 +01:00
committed by GitHub
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));