summaryrefslogtreecommitdiff
path: root/strtofr.c
diff options
context:
space:
mode:
Diffstat (limited to 'strtofr.c')
-rw-r--r--strtofr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/strtofr.c b/strtofr.c
index 3210aad17..01d77ec63 100644
--- a/strtofr.c
+++ b/strtofr.c
@@ -439,8 +439,8 @@ parsed_string_to_mpfr (mpfr_t x, struct parsed_string *pstr, mp_rnd_t rnd)
if (pstr_size >= pstr->prec)
pstr_size = pstr->prec;
- MPFR_ASSERTD (pstr_size == (mp_exp_t) pstr_size);
-
+ MPFR_ASSERTD ((mp_exp_t) pstr_size == (mp_exp_t) pstr_size);
+
/* convert str into binary */
real_ysize = mpn_set_str (y, pstr->mant, pstr_size, pstr->base);
MPFR_ASSERTD ( real_ysize <= ysize+1);