Bubble gum fix to make a 32-bit port easier

This commit is contained in:
Lassi Kortela 2019-10-14 00:47:52 +03:00
parent f3527b178c
commit 7143df49bd
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ int isnumtok_base(char *tok, value_t *pval, int base)
if (!read_digits(tok + 1, &end, base, &ui64)) {
return 0;
}
if (ui64 >= UINT64_TOP_BIT) {
if (ui64 >= TOP_BIT) { // TODO: hack alert
lerror(ArgError, "Number too negative");
}
if (pval)