summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-06 07:47:29 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-06 07:47:29 +0000
commit761e9c518f5326799d7714ffd253d1ad1d5e33a9 (patch)
treeebd263c202643c892927ff75481a63560b0753ba /gc.c
parent0e20c2afa818cbe47cad65da93db8b6bb9fe2a5f (diff)
gc.c: indent
* gc.c (gc_start_internal): adjust indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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);