* eval.c (bmcall): missing type.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-03-21 09:12:25 +00:00
parent f83c5da39d
commit dfb2c7aa14
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Mar 21 18:12:20 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* eval.c (bmcall): missing type.
Fri Mar 21 01:29:35 2003 Yukihiro Matsumoto <matz@ruby-lang.org> Fri Mar 21 01:29:35 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* sprintf.c (rb_f_sprintf): copy sign bits only if value is * sprintf.c (rb_f_sprintf): copy sign bits only if value is

2
eval.c
View File

@ -7284,7 +7284,7 @@ static VALUE
bmcall(args, method) bmcall(args, method)
VALUE 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); return method_call(RARRAY(args2)->len, RARRAY(args2)->ptr, method);
} }