summaryrefslogtreecommitdiff
path: root/tests/tlog.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 14:38:24 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 14:38:24 +0000
commit9139ea922ac39e09da34f033e6c8ba4845c56a02 (patch)
treefc98dba0c298d5d6880f2419aeb9f16eb31fead6 /tests/tlog.c
parent7bbf44f6aa76af784f3e52ca3fdab5a15126cd6f (diff)
downloadmpfr-9139ea922ac39e09da34f033e6c8ba4845c56a02.tar.gz
mpfr_print_raw -> mpfr_print_binary
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1558 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tlog.c')
-rw-r--r--tests/tlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tlog.c b/tests/tlog.c
index 0fca713c5..bbdda9638 100644
--- a/tests/tlog.c
+++ b/tests/tlog.c
@@ -104,7 +104,7 @@ void check3 (double d, unsigned long prec, mp_rnd_t rnd)
mpfr_set_d(x, d, rnd);
mpfr_log(y, x, rnd);
mpfr_out_str(stdout, 10, 0, y, rnd); putchar('\n');
- mpfr_print_raw(y); putchar('\n');
+ mpfr_print_binary(y); putchar('\n');
mpfr_clear(x); mpfr_clear(y);
}