aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--stdio-common/_itoa.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9e4e98b..5f932bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-08-18 Andreas Jaeger <aj@suse.de>
+
+ * stdio-common/_itoa.c (_itoa): Add missing DUMMY variable.
+
2012-08-18 Mike Frysinger <vapier@gentoo.org>
* include/sys/socket.h (__have_sock_cloexec): Add attribute_hidden.
diff --git a/stdio-common/_itoa.c b/stdio-common/_itoa.c
index 4c588d9..6759231 100644
--- a/stdio-common/_itoa.c
+++ b/stdio-common/_itoa.c
@@ -265,7 +265,7 @@ _itoa (value, buflim, base, upper_case)
while (value != 0)
{
mp_limb_t quo, rem, x;
- mp_limb_t __attribute__ ((unused));
+ mp_limb_t dummy __attribute__ ((unused));
umul_ppmm (x, dummy, value, base_multiplier);
quo = (x + ((value - x) >> 1)) >> (brec->post_shift - 1);
@@ -277,7 +277,7 @@ _itoa (value, buflim, base, upper_case)
while (value != 0)
{
mp_limb_t quo, rem, x;
- mp_limb_t __attribute__ ((unused));
+ mp_limb_t dummy __attribute__ ((unused));
umul_ppmm (x, dummy, value, base_multiplier);
quo = x >> brec->post_shift;