From e6d79fb63fb1509474302482576f01bb4f4c0299 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 16 Jun 2017 16:39:32 +0000 Subject: [PATCH] Do a proper trace --- gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc.c b/gc.c index bdf8ef3a..7712caa9 100644 --- a/gc.c +++ b/gc.c @@ -2056,7 +2056,7 @@ void gc_merge_all_heaps(gc_thread_data *dest, gc_thread_data *src) } ck_pr_add_int(&(dest->heap_num_huge_allocations), ck_pr_load_int(&(src->heap_num_huge_allocations))); -#ifdef GC_DEBUG_TRACE +#if GC_DEBUG_TRACE fprintf(stderr, "Finished merging old heap data\n"); #endif }