* 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:
parent
f83c5da39d
commit
dfb2c7aa14
@ -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
2
eval.c
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user