summaryrefslogtreecommitdiff
path: root/src/sinu.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2021-01-13 01:01:34 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2021-01-13 01:01:34 +0000
commite8d0453a181a8824dc687cfdc2de1d97ad15c701 (patch)
treeab8a4df776e9d7f7b470a131406531bb1496787f /src/sinu.c
parent8152adccfdc16e6b2f2f471e8ccfb9b8069a3063 (diff)
downloadmpfr-e8d0453a181a8824dc687cfdc2de1d97ad15c701.tar.gz
[src/{cosu.c,sinu.c,tanu.c}] Changed MPFR_PREC to MPFR_GET_PREC.
git-svn-id: https://scm.gforge.inria.fr/anonscm/svn/mpfr/trunk@14238 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/sinu.c')
-rw-r--r--src/sinu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sinu.c b/src/sinu.c
index 173194d15..aabffb718 100644
--- a/src/sinu.c
+++ b/src/sinu.c
@@ -68,7 +68,7 @@ mpfr_sinu (mpfr_ptr y, mpfr_srcptr x, unsigned long u, mpfr_rnd_t rnd_mode)
MPFR_SAVE_EXPO_MARK (expo);
- precy = MPFR_PREC (y);
+ precy = MPFR_GET_PREC (y);
expx = MPFR_GET_EXP (x);
/* For x large, since argument reduction is expensive, we want to avoid
any failure in Ziv's strategy, thus we take into account expx too.