aboutsummaryrefslogtreecommitdiffstats
path: root/vm_exec.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-21 06:30:54 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-21 06:30:54 +0000
commit43bad344b7c867054532294036020bcebe78986b (patch)
treeefa4b6640f1d1183f7492e4682d3f0f22068157e /vm_exec.h
parente4800c47dc9bd8a2864c7daca6373146ab7a2783 (diff)
downloadruby-43bad344b7c867054532294036020bcebe78986b.tar.gz
fix typo.
* vm_exec.h (DEBUG_END_INSN()): use `ec` instead of `th`. This macro is used when `VMDEBUG > 0`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64799 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_exec.h')
-rw-r--r--vm_exec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_exec.h b/vm_exec.h
index 26d60b7cb6..f06399033d 100644
--- a/vm_exec.h
+++ b/vm_exec.h
@@ -36,7 +36,7 @@ typedef rb_iseq_t *ISEQ;
#endif
#define DEBUG_END_INSN() \
- rb_vmdebug_debug_print_post(th, GET_CFP() SC_REGS());
+ rb_vmdebug_debug_print_post(ec, GET_CFP() SC_REGS());
#else