summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-01 11:01:04 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-01 11:01:04 +0000
commitb27aa02015e479a1ed3138e3ab7d1524e83ed6ec (patch)
tree11de3a5681c8ceb8c8eb214773cca5120c21fd8a
parent070fcde39dcdca522658950247ab465010db60c9 (diff)
* gc.c (rb_gc): typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4267 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 792f70b7b4..7b0a05d617 100644
--- a/gc.c
+++ b/gc.c
@@ -1261,7 +1261,7 @@ rb_gc()
ucontext_t ctx;
VALUE *top, *bot;
getcontext(&ctx);
- rb_gc_mark_locations((VALUE*)&ctx.uc_mcontext,
+ mark_locations_array((VALUE*)&ctx.uc_mcontext,
((size_t)(sizeof(VALUE)-1 + sizeof ctx.uc_mcontext)/sizeof(VALUE)));
bot = (VALUE*)__libc_ia64_register_backing_store_base;
top = (VALUE*)ctx.uc_mcontext.sc_ar_bsp;