bug fix in LONGINT constants
This commit is contained in:
parent
e5b9c564af
commit
e67e59e56a
|
@ -425,7 +425,10 @@ again:
|
||||||
if (np < &buf[NUMSIZE]) *np++ = 'D';
|
if (np < &buf[NUMSIZE]) *np++ = 'D';
|
||||||
state = Hex;
|
state = Hex;
|
||||||
}
|
}
|
||||||
else state = End;
|
else {
|
||||||
|
state = End;
|
||||||
|
PushBack();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Hex:
|
case Hex:
|
||||||
|
|
Loading…
Reference in a new issue