summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-11-25 09:46:52 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-11-25 09:46:52 +0000
commit6ac62ea315e1103494b88d3567cc79fc2032504f (patch)
treea4a39f5c35f6f7f7a226b2898f52ce11681f9c59 /tests
parent9a764b4613e8d6cc72021b054725350d252b76ea (diff)
downloadmpfr-6ac62ea315e1103494b88d3567cc79fc2032504f.tar.gz
tests/tstckintc.c: fixed types for the printf %p format specifier.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6577 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests')
-rw-r--r--tests/tstckintc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tstckintc.c b/tests/tstckintc.c
index b7fcf43bd..b49232e09 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);
}