Remove `|| flags & ALT == 0' which was an obscure no-op, not a
parenthesization/precedence bug.
This commit is contained in:
parent
9870b4d2de
commit
918bed7582
@ -756,7 +756,7 @@ number: if ((dprec = prec) >= 0)
|
||||
ox[0] = *cp++;
|
||||
ox[1] = '.';
|
||||
PRINT(ox, 2);
|
||||
if (_double || flags & ALT == 0) {
|
||||
if (_double) {
|
||||
PRINT(cp, ndig-1);
|
||||
} else /* 0.[0..] */
|
||||
/* __dtoa irregularity */
|
||||
|
Loading…
Reference in New Issue
Block a user