mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
cont.c (cont_mark): fix typo in unused path [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
54e546c6c6
commit
d279f68f21
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Aug 15 08:10:29 2014 Eric Wong <e@80x24.org>
|
||||
|
||||
* cont.c (cont_mark): fix typo in unused path [ci skip]
|
||||
|
||||
Fri Aug 15 06:00:56 2014 Eric Wong <e@80x24.org>
|
||||
|
||||
* vm.c (rb_thread_mark): update comment about marking `me'
|
||||
|
|
2
cont.c
2
cont.c
|
@ -191,7 +191,7 @@ cont_mark(void *ptr)
|
|||
rb_gc_mark_locations(cont->vm_stack,
|
||||
cont->vm_stack + cont->vm_stack_slen + cont->vm_stack_clen);
|
||||
#else
|
||||
rb_gc_mark_localtion(cont->vm_stack,
|
||||
rb_gc_mark_locations(cont->vm_stack,
|
||||
cont->vm_stack, cont->saved_thread.stack_size);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue