From f533eb38d67ad4d1d3359db6f03bc7fe2733c930 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Wed, 19 Jun 2013 03:23:11 +0100 Subject: [PATCH] utils/t/exc-test.c: Fix `%p' format/argument type mismatch. --- utils/t/exc-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.11.0