diff options
author | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-02-15 14:32:16 +0000 |
---|---|---|
committer | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-02-15 14:32:16 +0000 |
commit | d1dafc30df4c3ca4693f0698f3dcf69f8c4d06e6 (patch) | |
tree | 3bd394a697ac6e8e35f9702de6543106d7bd10a0 /atanh.c | |
parent | cfaefd19d38292c5b0d8906c218c98ad953b28c6 (diff) | |
download | mpfr-d1dafc30df4c3ca4693f0698f3dcf69f8c4d06e6.tar.gz |
Fix bug: use x instead of xf in LOG.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3316 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'atanh.c')
-rw-r--r-- | atanh.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ mpfr_atanh (mpfr_ptr y, mpfr_srcptr xt , mp_rnd_t rnd_mode) MPFR_ZIV_DECL (loop); MPFR_SAVE_EXPO_DECL (expo); - MPFR_LOG_FUNC (("x[%#R]=%R rnd=%d", x, x, rnd_mode), + MPFR_LOG_FUNC (("x[%#R]=%R rnd=%d", xt, xt, rnd_mode), ("y[%#R]=%R inexact=%d", y, y, inexact)); /* Special cases */ |