From 65d3461e95246ba710a79ea8f6fcf145f872f304 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Mon, 25 Dec 2017 14:22:21 +0000 Subject: [PATCH] cont.c: fix comment to follow field name change saved_thread was renamed to saved_ec in r59831 [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- cont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cont.c b/cont.c index 6e8f95de54..257bbee33a 100644 --- a/cont.c +++ b/cont.c @@ -528,7 +528,7 @@ cont_save_thread(rb_context_t *cont, rb_thread_t *th) /* save thread context */ *sec = *th->ec; - /* saved_thread->machine.stack_end should be NULL */ + /* saved_ec->machine.stack_end should be NULL */ /* because it may happen GC afterward */ sec->machine.stack_end = NULL;