From d1c7f766fde371e1b4a7e188e3889f26ebdd04a8 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Sat, 11 Jan 2014 18:50:41 +0100 Subject: [PATCH] glibc: Remove a ++ that was accidentally added. Thanks to PulkoMandy for noticing! Work towards bug #10396 --- src/system/libroot/posix/glibc/stdio-common/printf_fp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/libroot/posix/glibc/stdio-common/printf_fp.c b/src/system/libroot/posix/glibc/stdio-common/printf_fp.c index d22c731a98..0abbed9e55 100644 --- a/src/system/libroot/posix/glibc/stdio-common/printf_fp.c +++ b/src/system/libroot/posix/glibc/stdio-common/printf_fp.c @@ -924,7 +924,7 @@ hack_digit_callee1: hack_digit_callee = 2; goto hack_digit; hack_digit_callee2: - *wcp++ = hack_digit_ret; + *wcp = hack_digit_ret; if (*wcp != L'0') significant = 1; else if (significant == 0)