summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm_core.h b/vm_core.h
index 511e324a29..60f34cdc02 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -909,8 +909,8 @@ typedef struct rb_trace_arg_struct {
int klass_solved;
/* calc from cfp */
- int line;
- VALUE file;
+ int lineno;
+ VALUE path;
} rb_trace_arg_t;
void rb_threadptr_exec_event_hooks(rb_trace_arg_t *trace_arg);
@@ -926,7 +926,7 @@ void rb_threadptr_exec_event_hooks(rb_trace_arg_t *trace_arg);
trace_arg.id = (id_); \
trace_arg.klass = (klass_); \
trace_arg.data = (data_); \
- trace_arg.file = Qundef; \
+ trace_arg.path = Qundef; \
trace_arg.klass_solved = 0; \
rb_threadptr_exec_event_hooks(&trace_arg); \
} \