summaryrefslogtreecommitdiff
path: root/vm_method.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_method.c b/vm_method.c
index e55fc4697c..7fc3f8db97 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -1482,7 +1482,7 @@ static void
scope_visibility_check(void)
{
/* Check for public/protected/private/module_function called inside a method */
- rb_control_frame_t *cfp = rb_current_execution_context()->cfp+1;
+ rb_control_frame_t *cfp = GET_EC()->cfp+1;
if (cfp && cfp->iseq && cfp->iseq->body->type == ISEQ_TYPE_METHOD) {
rb_warn("calling %s without arguments inside a method may not have the intended effect",
rb_id2name(rb_frame_this_func()));