* vm.c (rb_iseq_eval): fixed indent.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21345 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-01-05 09:54:47 +00:00
parent 893efc4db9
commit 8dee58d7e1
1 changed files with 2 additions and 2 deletions

4
vm.c
View File

@ -1271,7 +1271,7 @@ rb_iseq_eval(VALUE iseqval)
val = vm_exec(th); val = vm_exec(th);
tmp = iseqval; /* prohibit tail call optimization */ tmp = iseqval; /* prohibit tail call optimization */
return val; return val;
} }
VALUE VALUE
rb_iseq_eval_main(VALUE iseqval) rb_iseq_eval_main(VALUE iseqval)
@ -1497,7 +1497,7 @@ thread_free(void *ptr)
if (ptr) { if (ptr) {
th = ptr; th = ptr;
if (!th->root_fiber) { if (!th->root_fiber) {
RUBY_FREE_UNLESS_NULL(th->stack); RUBY_FREE_UNLESS_NULL(th->stack);
} }