summaryrefslogtreecommitdiff
path: root/tests/read_data.c
diff options
context:
space:
mode:
authorthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2008-12-09 13:00:31 +0000
committerthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2008-12-09 13:00:31 +0000
commit573103637ea3578949f224faf68af6f70711d4ce (patch)
treefc9577b27c9a09120bc4accb5bc766768f239556 /tests/read_data.c
parent4cfd8cff73f32a19dc7b28ab3352cd1a44d08490 (diff)
downloadmpc-573103637ea3578949f224faf68af6f70711d4ce.tar.gz
tests/read_data.c: Fix wrong conversion from inexact value to string.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@394 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/read_data.c')
-rw-r--r--tests/read_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/read_data.c b/tests/read_data.c
index 837c743..028aea4 100644
--- a/tests/read_data.c
+++ b/tests/read_data.c
@@ -53,8 +53,8 @@ static int nextchar;
: (inex) == 5 ? "(+1, +1)" \
: (inex) == 6 ? "(-1, +1)" \
: (inex) == 8 ? "(0, -1)" \
- : (inex) == 9 ? "(-1, -1)" \
- : (inex) == 10 ? "(+1, -1)" : "unknown"
+ : (inex) == 9 ? "(+1, -1)" \
+ : (inex) == 10 ? "(-1, -1)" : "unknown"
const char *mpfr_rnd_mode [] =