* bignum.c (rb_big_2comp): void function cannot return any value.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2140 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2002-02-26 12:36:26 +00:00
parent 8d456d453c
commit 210ebe1acf
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Feb 26 21:34:07 2002 Usaku Nakamura <usa@ruby-lang.org>
* bignum.c (rb_big_2comp): void function cannot return any value.
Tue Feb 26 15:41:30 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_eval): call trace_func for if/while conditions.

View File

@ -101,7 +101,7 @@ void
rb_big_2comp(x) /* get 2's complement */
VALUE x;
{
return get2comp(x, Qtrue);
get2comp(x, Qtrue);
}
static VALUE