From 91a8d90babddd48b5ce982eaddeff0c94640d7c8 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Thu, 13 Jul 2000 18:51:11 +0000 Subject: * libc/stdio/vfprintf.c: pad 0.0 correctly with %e --- newlib/libc/stdio/vfprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newlib/libc/stdio') diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c index 41f7d52e9..a96ce0c7d 100644 --- a/newlib/libc/stdio/vfprintf.c +++ b/newlib/libc/stdio/vfprintf.c @@ -824,7 +824,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 */ -- cgit v1.2.3