diff options
author | thevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4> | 2008-10-21 13:51:44 +0000 |
---|---|---|
committer | thevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4> | 2008-10-21 13:51:44 +0000 |
commit | 3d20481589d1d3ad7fb45fe54c14a06f4a4cc8c7 (patch) | |
tree | 8716e4296b4bbf1b98cc1385ffb455df09c64c4b /tests | |
parent | bc62c194d13717100b90069bce89117caee30a87 (diff) | |
download | mpc-3d20481589d1d3ad7fb45fe54c14a06f4a4cc8c7.tar.gz |
tests/read_data.c: Fix bug (now read mpc_rnd_t instead of mp_rnd_t in read_ccf and read_cfc)
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@265 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests')
-rw-r--r-- | tests/read_data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/read_data.c b/tests/read_data.c index 0724afe..941769a 100644 --- a/tests/read_data.c +++ b/tests/read_data.c @@ -323,7 +323,7 @@ read_cfc (FILE *fp, mpc_ptr expected, known_signs_t *signs, mpfr_ptr op1, pathname, line_number); exit (1); } - if (read_mpfr_rounding_mode (fp, rnd)) + if (read_rounding_mode (fp, rnd)) { printf ("Error: unexpected rounding mode in file '%s' line %ld\n", pathname, line_number); @@ -353,7 +353,7 @@ read_ccf (FILE *fp, mpc_ptr expected, known_signs_t *signs, mpc_ptr op1, pathname, line_number); exit (1); } - if (read_mpfr_rounding_mode (fp, rnd)) + if (read_rounding_mode (fp, rnd)) { printf ("Error: unexpected rounding mode in file '%s' line %ld\n", pathname, line_number); |