ruby-changes:35101
From: normal <ko1@a...>
Date: Fri, 15 Aug 2014 08:12:17 +0900 (JST)
Subject: [ruby-changes:35101] normal:r47183 (trunk): cont.c (cont_mark): fix typo in unused path [ci skip]
normal 2014-08-15 08:12:04 +0900 (Fri, 15 Aug 2014) New Revision: 47183 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47183 Log: cont.c (cont_mark): fix typo in unused path [ci skip] Modified files: trunk/ChangeLog trunk/cont.c Index: ChangeLog =================================================================== --- ChangeLog (revision 47182) +++ ChangeLog (revision 47183) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Fri Aug 15 08:10:29 2014 Eric Wong <e@8...> + + * cont.c (cont_mark): fix typo in unused path [ci skip] + Fri Aug 15 06:00:56 2014 Eric Wong <e@8...> * vm.c (rb_thread_mark): update comment about marking `me' Index: cont.c =================================================================== --- cont.c (revision 47182) +++ cont.c (revision 47183) @@ -191,7 +191,7 @@ cont_mark(void *ptr) https://github.com/ruby/ruby/blob/trunk/cont.c#L191 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 } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/