1
0
Fork 0
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:
akr 2005-12-12 03:08:35 +00:00
parent c423d3cbf2
commit 87ebe712f7

5
gc.c
View file

@ -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;