Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2010-02-15 19:10:28 +0300
committerCorinna Vinschen <corinna@vinschen.de>2010-02-15 19:10:28 +0300
commitb85c06ba36da589ef74b0e9ecb129627b5c06fc7 (patch)
tree8de084e1df44279ca0780cfebfdcf320c82a6ef8 /newlib/libc/stdio/vfprintf.c
parent0da7a27a1b3457f74997f44350633cd16cd1dd11 (diff)
* libc/stdio/vfprintf.c (_VFPRINTF_R): Drop printing a redundant
decimal point in case the float argument is an integral value.
Diffstat (limited to 'newlib/libc/stdio/vfprintf.c')
-rw-r--r--newlib/libc/stdio/vfprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c
index be4170cc2..be35d248c 100644
--- a/newlib/libc/stdio/vfprintf.c
+++ b/newlib/libc/stdio/vfprintf.c
@@ -1578,7 +1578,7 @@ number: if ((dprec = prec) >= 0)
cp = convbuf + ndig;
}
#endif
- if (prec || flags & ALT)
+ if (expt < ndig || flags & ALT)
PRINT (decimal_point, decp_len);
PRINTANDPAD (cp, convbuf + ndig,
ndig - expt, zeroes);