summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-30 09:49:41 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-30 09:49:41 +0000
commitb22fc4ebb6d1e6d97587d750378db249b07b3109 (patch)
tree398ec2157bc99a81c6d1160bc9da8ff1054dd50c /gc.c
parente8f43ad081e35d8779666f79f01d9c59a4122c29 (diff)
* gc.c (gc_sweep): typo fixed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 5a786cc02e..db16d6c841 100644
--- a/gc.c
+++ b/gc.c
@@ -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 */
}