* gc.c (gc_start_internal): adjust indent.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-12-06 07:47:29 +00:00
Родитель 0e20c2afa8
Коммит 761e9c518f
1 изменённых файлов: 2 добавлений и 2 удалений

4
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);