From eb4a4b9affc9e521baa4a4f247c82fc5e2392340 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 19 Jul 2017 17:54:08 -0400 Subject: [PATCH] Consistent style --- gc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gc.c b/gc.c index 80f7f5c7..064b5b4e 100644 --- a/gc.c +++ b/gc.c @@ -1230,8 +1230,7 @@ static void mark_stack_or_heap_obj(gc_thread_data * thd, object obj, int locked) { if (!is_object_type(obj) || type_of(obj) == boolean_tag) { return; - } - else if (gc_is_stack_obj(thd, obj)) { + } else if (gc_is_stack_obj(thd, obj)) { // Set object to be marked after moved to heap by next GC. // This avoids having to recursively examine the stack now, // which we have to do anyway during minor GC.