summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/proc.c b/proc.c
index 0627466965..5e1932bfc9 100644
--- a/proc.c
+++ b/proc.c
@@ -371,12 +371,12 @@ get_local_variable_ptr(VALUE envval, ID lid)
iseq = env->block.iseq;
if (RUBY_VM_NORMAL_ISEQ_P(iseq)) {
- for (i=0; i<iseq->local_table_size; i++) {
- if (iseq->local_table[i] == lid) {
- return &env->env[i];
+ for (i=0; i<iseq->local_table_size; i++) {
+ if (iseq->local_table[i] == lid) {
+ return &env->env[i];
+ }
}
}
- }
else {
return NULL;
}
@@ -2531,7 +2531,7 @@ proc_binding(VALUE self)
}
else {
rb_raise(rb_eArgError, "Can't create Binding from C level Proc");
- }
+ }
}
bindval = rb_binding_alloc(rb_cBinding);