summaryrefslogtreecommitdiff
path: root/blacklst.c
diff options
context:
space:
mode:
Diffstat (limited to 'blacklst.c')
-rw-r--r--blacklst.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/blacklst.c b/blacklst.c
index d080944e..449130df 100644
--- a/blacklst.c
+++ b/blacklst.c
@@ -60,7 +60,7 @@ GC_INNER void GC_default_print_heap_obj_proc(ptr_t p)
int kind = HDR(base)->hb_obj_kind;
GC_err_printf("object at %p of appr. %lu bytes (%s)\n",
- base, (unsigned long)GC_size(base),
+ (void *)base, (unsigned long)GC_size(base),
kind == PTRFREE ? "atomic" :
IS_UNCOLLECTABLE(kind) ? "uncollectable" : "composite");
}
@@ -75,7 +75,7 @@ GC_INNER void (*GC_print_heap_obj)(ptr_t p) = GC_default_print_heap_obj_proc;
if (0 == base) {
GC_err_printf("Black listing (%s) %p referenced from %p in %s\n",
- kind_str, (ptr_t)p, source,
+ kind_str, (void *)p, (void *)source,
NULL != source ? "root set" : "register");
} else {
/* FIXME: We can't call the debug version of GC_print_heap_obj */
@@ -83,8 +83,8 @@ GC_INNER void (*GC_print_heap_obj)(ptr_t p) = GC_default_print_heap_obj_proc;
/* the world is stopped. */
GC_err_printf("Black listing (%s) %p referenced from %p in"
" object at %p of appr. %lu bytes\n",
- kind_str, (ptr_t)p, source,
- base, (unsigned long)GC_size(base));
+ kind_str, (void *)p, (void *)source,
+ (void *)base, (unsigned long)GC_size(base));
}
}
#endif /* PRINT_BLACK_LIST */