summaryrefslogtreecommitdiff
path: root/src/mul_2ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mul_2ui.c')
-rw-r--r--src/mul_2ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mul_2ui.c b/src/mul_2ui.c
index 8c9959abe..fbba80dfe 100644
--- a/src/mul_2ui.c
+++ b/src/mul_2ui.c
@@ -33,7 +33,7 @@ mpfr_mul_2ui (mpfr_ptr y, mpfr_srcptr x, unsigned long int n, mpfr_rnd_t rnd_mod
("y[%Pu]=%.*Rg inexact=%d",
mpfr_get_prec (y), mpfr_log_prec, y, inexact));
- inexact = MPFR_UNLIKELY(y != x) ? mpfr_set (y, x, rnd_mode) : 0;
+ inexact = (y != x) ? mpfr_set (y, x, rnd_mode) : 0;
if (MPFR_LIKELY( MPFR_IS_PURE_FP(y)) )
{