utils/t/exc-test.c: Fix `%p' format/argument type mismatch.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 19 Jun 2013 02:23:11 +0000 (03:23 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Fri, 28 Jun 2013 22:24:18 +0000 (23:24 +0100)
utils/t/exc-test.c

index f9a9463..ba74b94 100644 (file)
@@ -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);
 }