diff options
Diffstat (limited to 'get_si.c')
-rw-r--r-- | get_si.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ mpfr_get_si (mpfr_srcptr f, mp_rnd_t rnd) /* now the result is in the most significant limb of x */ exp = MPFR_GET_EXP (x); /* since |x| >= 1, exp >= 1 */ - n = MPFR_ESIZE(x); + n = MPFR_LIMB_SIZE(x); s = MPFR_MANT(x)[n - 1] >> (GMP_NUMB_BITS - exp); mpfr_clear (x); |