mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-30 19:10:36 +08:00
* libc/stdio/vfprintf.c: pad 0.0 correctly with %e
This commit is contained in:
parent
d9028f52ae
commit
91a8d90bab
@ -1,3 +1,7 @@
|
|||||||
|
2000-07-13 DJ Delorie <dj@cygnus.com>
|
||||||
|
|
||||||
|
* libc/stdio/vfprintf.c: pad 0.0 correctly with %e
|
||||||
|
|
||||||
Wed Jun 28 14:08:00 2000 Keith Walker <keith.walker@arm.com>
|
Wed Jun 28 14:08:00 2000 Keith Walker <keith.walker@arm.com>
|
||||||
|
|
||||||
* libc/sys/arm/crt0.S (.LC30): Added missing length parameter
|
* libc/sys/arm/crt0.S (.LC30): Added missing length parameter
|
||||||
|
@ -824,7 +824,7 @@ number: if ((dprec = prec) >= 0)
|
|||||||
ox[0] = *cp++;
|
ox[0] = *cp++;
|
||||||
ox[1] = '.';
|
ox[1] = '.';
|
||||||
PRINT(ox, 2);
|
PRINT(ox, 2);
|
||||||
if (_double || (flags & ALT) == 0) {
|
if (_double) {
|
||||||
PRINT(cp, ndig-1);
|
PRINT(cp, ndig-1);
|
||||||
} else /* 0.[0..] */
|
} else /* 0.[0..] */
|
||||||
/* __dtoa irregularity */
|
/* __dtoa irregularity */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user