From 3f875e49ebb8b4838e6f7282b840ca39c341a63b Mon Sep 17 00:00:00 2001 From: vlefevre Date: Wed, 25 Nov 2009 09:52:55 +0000 Subject: tests/tstckintc.c: fixed types for the printf %p format specifier (trunk r6577). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/2.4@6579 280ebfd0-de03-0410-8827-d642c229c3f4 --- tests/tstckintc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tstckintc.c b/tests/tstckintc.c index 81a6dd368..0fc8805fb 100644 --- a/tests/tstckintc.c +++ b/tests/tstckintc.c @@ -158,7 +158,7 @@ test2 (void) (mpfr_custom_init_set) (x, c[0], c[1], p, &c[2]); if (c != a || mpfr_cmp_ui (x, 59) != 0) { - printf ("Compact (2) failed! c=%p a=%p\n", c, a); + printf ("Compact (2) failed! c=%p a=%p\n", (void *) c, (void *) a); mpfr_dump (x); exit (1); } -- cgit v1.2.1