diff options
Diffstat (limited to 'set_str_raw.c')
-rw-r--r-- | set_str_raw.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/set_str_raw.c b/set_str_raw.c index 10a071db1..82942b6b7 100644 --- a/set_str_raw.c +++ b/set_str_raw.c @@ -62,11 +62,11 @@ mpfr_set_str_binary (mpfr_ptr x, const char *str) { MPFR_SET_INF(x); if (negative) - MPFR_SET_NEG(x); + MPFR_SET_NEG(x); else - MPFR_SET_POS(x); + MPFR_SET_POS(x); /*if (MPFR_IS_STRICTNEG(x) != negative) - MPFR_CHANGE_SIGN(x);*/ + MPFR_CHANGE_SIGN(x);*/ return; } @@ -139,9 +139,9 @@ mpfr_set_str_binary (mpfr_ptr x, const char *str) MPFR_SET_EXP (x, expn - cnt); if (negative) - MPFR_SET_NEG(x); + MPFR_SET_NEG(x); else - MPFR_SET_POS(x); + MPFR_SET_POS(x); } (*__gmp_free_func) (str0, alloc); |