summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--mini-gmp/mini-gmp.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5516befcd..48f4e2ca2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-01-16 Marco Bodrato <bodrato@mail.dm.unipi.it>
+
+ * mini-gmp/mini-gmp.c (mpz_cmp_d): Correct multiword comparison.
+
2013-01-15 Niels Möller <nisse@lysator.liu.se>
* mini-gmp/tests/t-str.c (main): Use x->_mp_d rather than x[0]._mp_d.
diff --git a/mini-gmp/mini-gmp.c b/mini-gmp/mini-gmp.c
index 84f3312cf..f55fb8785 100644
--- a/mini-gmp/mini-gmp.c
+++ b/mini-gmp/mini-gmp.c
@@ -1585,7 +1585,7 @@ mpz_cmp_d (const mpz_t x, double d)
if (d >= B)
return -sign;
- for (i = xn; i-- > 0; i++)
+ for (i = xn; i-- > 0; i)
{
mp_limb_t f, xl;