summaryrefslogtreecommitdiff
path: root/extract.c
diff options
context:
space:
mode:
Diffstat (limited to 'extract.c')
-rw-r--r--extract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extract.c b/extract.c
index 6401ddd67..292f4b9d6 100644
--- a/extract.c
+++ b/extract.c
@@ -53,5 +53,5 @@ mpfr_extract (mpz_ptr y, mpfr_srcptr p, unsigned int i)
MPN_COPY (PTR(y), MPFR_MANT(p) + size_p - two_i, two_i_2);
MPN_NORMALIZE (PTR(y), two_i_2);
- SIZ(y) = (MPFR_ISNEG(p)) ? -two_i_2 : two_i_2;
+ SIZ(y) = (MPFR_IS_STRICTNEG(p)) ? -two_i_2 : two_i_2;
}