utils/t/exc-test.c: Fix `%p' format/argument type mismatch.
[mLib] / 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);
 }