mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
indent "if" body.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9676 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c423d3cbf2
commit
87ebe712f7
1 changed files with 3 additions and 2 deletions
5
gc.c
5
gc.c
|
@ -1025,8 +1025,9 @@ gc_sweep(void)
|
|||
unsigned long live = 0;
|
||||
|
||||
mark_source_filename(ruby_sourcefile);
|
||||
if (source_filenames)
|
||||
st_foreach(source_filenames, sweep_source_filename, 0);
|
||||
if (source_filenames) {
|
||||
st_foreach(source_filenames, sweep_source_filename, 0);
|
||||
}
|
||||
|
||||
freelist = 0;
|
||||
final_list = deferred_final_list;
|
||||
|
|
Loading…
Reference in a new issue