summaryrefslogtreecommitdiff
path: root/get_sj.c
diff options
context:
space:
mode:
Diffstat (limited to 'get_sj.c')
-rw-r--r--get_sj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/get_sj.c b/get_sj.c
index 6ad9af9b0..433f9819e 100644
--- a/get_sj.c
+++ b/get_sj.c
@@ -77,7 +77,7 @@ mpfr_get_sj (mpfr_srcptr f, mpfr_rnd_t rnd)
{
sh -= BITS_PER_MP_LIMB;
r += sh >= 0 ? (intmax_t) xp[n] << sh
- : (intmax_t) xp[n] >> (- sh);
+ : (intmax_t) xp[n] >> (- sh);
}
}
else
@@ -86,7 +86,7 @@ mpfr_get_sj (mpfr_srcptr f, mpfr_rnd_t rnd)
{
sh -= BITS_PER_MP_LIMB;
r -= sh >= 0 ? (intmax_t) xp[n] << sh
- : (intmax_t) xp[n] >> (- sh);
+ : (intmax_t) xp[n] >> (- sh);
}
}
}