summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-12 07:06:14 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-12 07:06:14 +0000
commit9354b05e5cd4ee0fb0a6ed823145657eb4e68d55 (patch)
treedd014485ef06e221c6502f071f5e3d9f9e1197f2 /proc.c
parent182ce60f7552ec62b1d97fbc3e701f9405b12291 (diff)
proc.c: move misplaced case
* proc.c (rb_method_entry_arity): move misplaced case added at r38236. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proc.c b/proc.c
index b66c6c6e94..a112677e69 100644
--- a/proc.c
+++ b/proc.c
@@ -1683,9 +1683,9 @@ rb_method_entry_arity(const rb_method_entry_t *me)
default:
break;
}
+ }
case VM_METHOD_TYPE_REFINED:
return -1;
- }
}
rb_bug("rb_method_entry_arity: invalid method entry type (%d)", def->type);