Revert "Bubble gum fix to make a 32-bit port easier"

This reverts commit 7143df49bd.
This commit is contained in:
Lassi Kortela 2019-10-14 01:00:07 +03:00
parent a9b126783d
commit 0c79f04503
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 >= TOP_BIT) { // TODO: hack alert
if (ui64 >= UINT64_TOP_BIT) {
lerror(ArgError, "Number too negative");
}
if (pval)