aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gc.c b/gc.c
index 07e970e3ba..e10109b707 100644
--- a/gc.c
+++ b/gc.c
@@ -5031,9 +5031,9 @@ gc_start_internal(int argc, VALUE *argv, VALUE self)
rb_check_keyword_opthash(opt, keyword_ids, 0, 2);
if ((kwval = rb_hash_lookup2(opt, keyword_syms[0], Qundef)) != Qundef)
- full_mark = RTEST(kwval);
+ full_mark = RTEST(kwval);
if ((kwval = rb_hash_lookup2(opt, keyword_syms[1], Qundef)) != Qundef)
- immediate_sweep = RTEST(kwval);
+ immediate_sweep = RTEST(kwval);
}
garbage_collect(objspace, full_mark, immediate_sweep, GPR_FLAG_METHOD);