summaryrefslogtreecommitdiff
path: root/mpfr/exceptions.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpfr/exceptions.c')
-rw-r--r--mpfr/exceptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpfr/exceptions.c b/mpfr/exceptions.c
index a8519992f..63adb5a7c 100644
--- a/mpfr/exceptions.c
+++ b/mpfr/exceptions.c
@@ -182,7 +182,7 @@ mpfr_set_underflow (mpfr_ptr x, mp_rnd_t rnd_mode, int sign)
MPFR_EXP(x) = __mpfr_emin;
xn = (MPFR_PREC(x)-1)/BITS_PER_MP_LIMB;
xp = MPFR_MANT(x);
- xp[xn] = MP_LIMB_T_HIGHBIT;
+ xp[xn] = GMP_LIMB_HIGHBIT;
MPN_ZERO(xp, xn);
inex = 1;
}