summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-11-25 09:52:55 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-11-25 09:52:55 +0000
commit3f875e49ebb8b4838e6f7282b840ca39c341a63b (patch)
tree5b8acfb72c9808ad0aebefa82472c24371b1c1b3
parentcb327324716d3254cd3da79a9c03d2e423329eb7 (diff)
downloadmpfr-3f875e49ebb8b4838e6f7282b840ca39c341a63b.tar.gz
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
-rw-r--r--tests/tstckintc.c2
1 files changed, 1 insertions, 1 deletions
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);
}