diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-30 09:49:41 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-30 09:49:41 +0000 |
commit | 6bc7900a1a91112798cc7e63d5d0317a0c73dd7d (patch) | |
tree | 398ec2157bc99a81c6d1160bc9da8ff1054dd50c | |
parent | 64a9ce5b75ca5b58445fff752f37934d1da15faf (diff) | |
download | ruby-6bc7900a1a91112798cc7e63d5d0317a0c73dd7d.tar.gz ruby-6bc7900a1a91112798cc7e63d5d0317a0c73dd7d.tar.xz ruby-6bc7900a1a91112798cc7e63d5d0317a0c73dd7d.zip |
* gc.c (gc_sweep): typo fixed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gc.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -61,6 +61,10 @@ Fri Aug 25 20:35:57 2006 NAKAMURA Usaku <usa@ruby-lang.org> * test/wsdl/document/test_rpc.rb: remove echo.rb after test. [ruby-dev:29337] +Fri Aug 25 17:02:06 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * gc.c (gc_sweep): typo fixed. + Fri Aug 25 16:05:50 2006 Nobuyoshi Nakada <nobu@ruby-lang.org> * object.c (sym_call): check if the receiver is given. @@ -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 */ } |