summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-21 09:12:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-21 09:12:25 +0000
commitdfb2c7aa14f8453832e8c8c75e394d1bca6bd570 (patch)
tree79ec0f939a92cb3458a3260ff7053fef74298887 /eval.c
parentf83c5da39d1339f8d3ab00be0b214fc65cd69f44 (diff)
* eval.c (bmcall): missing type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index f662010157..7fa1261af1 100644
--- a/eval.c
+++ b/eval.c
@@ -7284,7 +7284,7 @@ static VALUE
bmcall(args, method)
VALUE args, method;
{
- volatile args2 = svalue_to_avalue(args);
+ volatile VALUE args2 = svalue_to_avalue(args);
return method_call(RARRAY(args2)->len, RARRAY(args2)->ptr, method);
}