From cd87465d28ea819eea97fcb45a780058a03cfe78 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 25 Feb 2007 01:34:33 +0000 Subject: * yarvcore.h: rename: rb_iseq_t#file_name -> filename rb_iseq_t#local_tbl -> local_table add: rb_iseq_t#local_table_size * compile.c: separate local_table_size and local_size (local variable size) * blockinlining.c: apply above rename. * compile.h: ditto. * eval.c: ditto. * iseq.c: ditto. * proc.c: ditto. * vm.c: ditto. * vm_dump.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11877 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_dump.c') diff --git a/vm_dump.c b/vm_dump.c index 691e988fe..8bb016bf9 100644 --- a/vm_dump.c +++ b/vm_dump.c @@ -103,7 +103,7 @@ control_frame_dump(rb_thread_t *th, rb_control_frame_t *cfp) line = th_get_sourceline(cfp); if (line) { char fn[MAX_POSBUF+1]; - snprintf(fn, MAX_POSBUF, "%s", RSTRING_PTR(cfp->iseq->file_name)); + snprintf(fn, MAX_POSBUF, "%s", RSTRING_PTR(cfp->iseq->filename)); snprintf(posbuf, MAX_POSBUF, "%s:%d", fn, line); } } -- cgit