summaryrefslogtreecommitdiff
path: root/tests/tasin.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2003-09-25 08:15:42 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2003-09-25 08:15:42 +0000
commitfd5e5221f3d42f1d1e29d99a15ac43a76460bf9b (patch)
tree332aef339e58cafd2dc32ee33efc6e2cbb66852a /tests/tasin.c
parent788b255e420f8d4ba0f0b43ce87b00b62d60a896 (diff)
downloadmpfr-fd5e5221f3d42f1d1e29d99a15ac43a76460bf9b.tar.gz
Changed the remaining stderr to stdout.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2449 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tasin.c')
-rw-r--r--tests/tasin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tasin.c b/tests/tasin.c
index 674fa035d..da1a29f95 100644
--- a/tests/tasin.c
+++ b/tests/tasin.c
@@ -47,8 +47,8 @@ main (void)
mpfr_neg (z, z, GMP_RNDN);
if (mpfr_cmp (y, z))
{
- fprintf (stderr, "sin(-1) is wrong, expected %.20e, got %.20e\n",
- mpfr_get_d1 (z), mpfr_get_d1 (y));
+ printf ("sin(-1) is wrong, expected %.20e, got %.20e\n",
+ mpfr_get_d1 (z), mpfr_get_d1 (y));
exit (1);
}