summaryrefslogtreecommitdiff
path: root/tests/tsin.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tsin.c')
-rw-r--r--tests/tsin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tsin.c b/tests/tsin.c
index e7a80e154..760f4b904 100644
--- a/tests/tsin.c
+++ b/tests/tsin.c
@@ -210,7 +210,7 @@ check_regression ()
int i;
p = strlen (xs) - 2 - 3;
- mpfr_inits2 (p, x, y, NULL);
+ mpfr_inits2 (p, x, y, (void *) 0);
mpfr_set_str (x, xs, 2, GMP_RNDN);
i = mpfr_sin (y, x, GMP_RNDN);
@@ -222,7 +222,7 @@ check_regression ()
mpfr_dump (y);
exit (1);
}
- mpfr_clears (x, y, NULL);
+ mpfr_clears (x, y, (void *) 0);
}
/* Test provided by Christopher Creutzig, 2007-05-21. */