summaryrefslogtreecommitdiff
path: root/tests/tui_pow.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tui_pow.c')
-rw-r--r--tests/tui_pow.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/tui_pow.c b/tests/tui_pow.c
index 2287e45ab..e9df640cc 100644
--- a/tests/tui_pow.c
+++ b/tests/tui_pow.c
@@ -94,9 +94,8 @@ check1 (mpfr_ptr x, mp_prec_t prec, unsigned long nt, mp_rnd_t rnd)
((inexact > 0) && (compare <= 0)) ||
((inexact < 0) && (compare >= 0)))
{
- fprintf (stderr,
- "Wrong inexact flag for rnd=%s: expected %d, got %d\n",
- mpfr_print_rnd_mode (rnd), compare, inexact);
+ printf ("Wrong inexact flag for rnd=%s: expected %d, got %d\n",
+ mpfr_print_rnd_mode (rnd), compare, inexact);
printf ("x="); mpfr_print_binary (x); puts ("");
printf ("y="); mpfr_print_binary (y); puts ("");
printf ("t="); mpfr_print_binary (t); puts ("");