aboutsummaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 08:01:26 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 08:01:26 +0000
commit8cd3bf0df4caeb5799b171b6f309aba4706923a0 (patch)
tree79e13f5315493e00710eca706b92b662e3bdf756 /vm_insnhelper.c
parent9cfbbffb5f82449932aa137e85c2b9c04399a46a (diff)
downloadruby-8cd3bf0df4caeb5799b171b6f309aba4706923a0.tar.gz
`rb_execution_context_t *` should not be `th`
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 8e7d9f9fe2..cbd7b83890 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -2771,7 +2771,7 @@ FUNC_FASTCALL(rb_vm_opt_struct_aref)(rb_execution_context_t *ec, rb_control_fram
}
rb_control_frame_t *
-FUNC_FASTCALL(rb_vm_opt_struct_aset)(rb_execution_context_t *th, rb_control_frame_t *reg_cfp)
+FUNC_FASTCALL(rb_vm_opt_struct_aset)(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp)
{
rb_struct_aset(GET_SELF(), TOPN(0), TOPN(1));
return reg_cfp;