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';
|
||||
state = Hex;
|
||||
}
|
||||
else state = End;
|
||||
else {
|
||||
state = End;
|
||||
PushBack();
|
||||
}
|
||||
break;
|
||||
|
||||
case Hex:
|
||||
|
|
Loading…
Reference in a new issue