mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Update.
2000-12-06 Ulrich Drepper <drepper@redhat.com> * stdio-common/printf_fp.c (__printf_fp): Handle decimal point in x.5 rounding correctly.
This commit is contained in:
@@ -923,7 +923,9 @@ __printf_fp (FILE *fp,
|
||||
{
|
||||
wchar_t *wtp = wcp;
|
||||
|
||||
if (digit == L'5' && (*(wcp - 1) & 1) == 0)
|
||||
if (digit == L'5'
|
||||
&& ((*(wcp - 1) != decimalwc && (*(wcp - 1) & 1) == 0)
|
||||
|| ((*(wcp - 1) == decimalwc && (*(wcp - 2) & 1) == 0))))
|
||||
{
|
||||
/* This is the critical case. */
|
||||
if (fracsize == 1 && frac[0] == 0)
|
||||
|
Reference in New Issue
Block a user