summaryrefslogtreecommitdiff
path: root/tests/tset_f.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tset_f.c')
-rw-r--r--tests/tset_f.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tset_f.c b/tests/tset_f.c
index aeca58e0a..a095105ef 100644
--- a/tests/tset_f.c
+++ b/tests/tset_f.c
@@ -134,11 +134,11 @@ main (void)
{
if (i)
mpfr_set_si (x, i, MPFR_RNDN);
- inexact = mpfr_set_f (x, y, (mp_rnd_t) r);
+ inexact = mpfr_set_f (x, y, (mpfr_rnd_t) r);
if (!MPFR_IS_ZERO(x) || !MPFR_IS_POS(x) || inexact)
{
printf ("mpfr_set_f(x,0) failed for %s, i = %d\n",
- mpfr_print_rnd_mode ((mp_rnd_t) r), i);
+ mpfr_print_rnd_mode ((mpfr_rnd_t) r), i);
exit (1);
}
}