diff options
-rw-r--r-- | runtime/GC/SemiSpace/semispace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/GC/SemiSpace/semispace.c b/runtime/GC/SemiSpace/semispace.c index 3792f861d4..93327edc88 100644 --- a/runtime/GC/SemiSpace/semispace.c +++ b/runtime/GC/SemiSpace/semispace.c @@ -86,7 +86,7 @@ static void* llvm_gc_alloc_slow(unsigned Size) { static void process_root(void **Root, void *Meta) { - printf("process_root[0x%X] = 0x%X\n", Root, *Root); + printf("process_root[0x%X] = 0x%X\n", (unsigned) Root, (unsigned) *Root); } void llvm_gc_collect() { |