1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm.c (rb_vm_get_sourceline): fix indent.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-09-15 02:40:39 +00:00
parent 89e490f1de
commit 7db23668b0

2
vm.c
View file

@ -743,7 +743,7 @@ rb_vm_get_sourceline(const rb_control_frame_t *cfp)
if (RUBY_VM_NORMAL_ISEQ_P(iseq)) {
size_t pos = cfp->pc - cfp->iseq->iseq_encoded;
line_no = rb_iseq_line_no(iseq, pos);
}
}
return line_no;
}