Skip to content

Commit 74483e1

Browse files
author
matz
committed
* gc.c (gc_sweep): typo fixed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 7c8abff commit 74483e1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Fri Aug 25 17:02:06 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
2+
3+
* gc.c (gc_sweep): typo fixed.
4+
15
Tue Aug 22 18:47:51 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
26

37
* lib/rdoc/parsers/parse_c.rb (RDoc::C_Parser::handle_method):

gc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ gc_sweep()
11221122

11231123
heaps[i].limit = 0;
11241124
for (pp = final_list; pp != final; pp = pp->as.free.next) {
1125-
p->as.free.flags |= FL_SINGLETON; /* freeing page mark */
1125+
pp->as.free.flags |= FL_SINGLETON; /* freeing page mark */
11261126
}
11271127
freelist = free; /* cancel this page from freelist */
11281128
}

0 commit comments

Comments
 (0)