aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-23 15:35:04 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-23 15:35:04 +0000
commit81f4262e6bbe34630f32d33877e439b50c50ed51 (patch)
treed672a9a7c456a74272d05b029a4c166c36d2dfbe /gc.c
parent6bcb8edb6deecf7d8d0c93fdcef4c70e72dfead1 (diff)
downloadruby-81f4262e6bbe34630f32d33877e439b50c50ed51.tar.gz
* ChangeLog: fix a typo at r43744.
* gc.c (is_mark_stack_empty): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gc.c b/gc.c
index c7230c52ff..998d0e6802 100644
--- a/gc.c
+++ b/gc.c
@@ -3030,7 +3030,7 @@ stack_chunk_alloc(void)
}
static inline int
-is_mark_stask_empty(mark_stack_t *stack)
+is_mark_stack_empty(mark_stack_t *stack)
{
return stack->chunk == NULL;
}
@@ -3117,7 +3117,7 @@ push_mark_stack(mark_stack_t *stack, VALUE data)
static int
pop_mark_stack(mark_stack_t *stack, VALUE *data)
{
- if (is_mark_stask_empty(stack)) {
+ if (is_mark_stack_empty(stack)) {
return FALSE;
}
if (stack->index == 1) {