Skip to content

Commit

Permalink
* gc.c (gc_sweep): typo fixed.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Aug 30, 2006
1 parent e8f43ad commit b22fc4e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ Fri Aug 25 20:35:57 2006 NAKAMURA Usaku <[email protected]>
* test/wsdl/document/test_rpc.rb: remove echo.rb after test.
[ruby-dev:29337]

Fri Aug 25 17:02:06 2006 Yukihiro Matsumoto <[email protected]>

* gc.c (gc_sweep): typo fixed.

Fri Aug 25 16:05:50 2006 Nobuyoshi Nakada <[email protected]>

* object.c (sym_call): check if the receiver is given.
Expand Down
2 changes: 1 addition & 1 deletion gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ gc_sweep(void)

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

0 comments on commit b22fc4e

Please sign in to comment.