From: Mark Wooding Date: Wed, 19 Jun 2013 02:23:11 +0000 (+0100) Subject: utils/t/exc-test.c: Fix `%p' format/argument type mismatch. X-Git-Tag: 2.2.1~9 X-Git-Url: https://git.distorted.org.uk/~mdw/mLib/commitdiff_plain/f533eb38d67ad4d1d3359db6f03bc7fe2733c930 utils/t/exc-test.c: Fix `%p' format/argument type mismatch. --- diff --git a/utils/t/exc-test.c b/utils/t/exc-test.c index f9a9463..ba74b94 100644 --- a/utils/t/exc-test.c +++ b/utils/t/exc-test.c @@ -35,7 +35,7 @@ int main(void) printf("%lu exception (val = %i)\n", exc_type, exc_i); break; } END_TRY; - printf("hello! __exc_list = %p\n", __exc_list); + printf("hello! __exc_list = %p\n", (void *)__exc_list); return (0); }