summaryrefslogtreecommitdiff
path: root/const_pi.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-02-14 11:36:40 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-02-14 11:36:40 +0000
commit5bd7aef7971df1929222d93b437d9392b935c1ff (patch)
tree1c45bd97c1c8108047ad7b8e9e0f80257fdad549 /const_pi.c
parentc834099818b8b339bf59918257c2197e49a3ca1d (diff)
downloadmpfr-5bd7aef7971df1929222d93b437d9392b935c1ff.tar.gz
mpfr_{div,mul}_2exp -> mpfr_{div,mul}_2ui.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1699 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'const_pi.c')
-rw-r--r--const_pi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/const_pi.c b/const_pi.c
index 94ea9fb3c..edca47860 100644
--- a/const_pi.c
+++ b/const_pi.c
@@ -97,7 +97,7 @@ mpfr_pi_machin3 (mpfr_ptr mylog, mp_rnd_t rnd_mode)
mpfr_sub(result, result, tmp4, GMP_RNDD);
mpfr_add(result, result, tmp5, GMP_RNDD);
mpfr_add(result, result, tmp6, GMP_RNDD);
- mpfr_mul_2exp(result, result, 2, GMP_RNDD);
+ mpfr_mul_2ui(result, result, 2, GMP_RNDD);
mpfr_clear(tmp1);
mpfr_clear(tmp2);
mpfr_clear(tmp3);