diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-02-26 12:36:26 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-02-26 12:36:26 +0000 |
commit | 210ebe1acf1647f3096828b66313b8131778f5a0 (patch) | |
tree | 67c758d19fab892f6ebfcc76b981df8f297575fb | |
parent | 8d456d453c5caa7b664ae906421f5d79dcf295af (diff) |
* 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
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | bignum.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Tue Feb 26 21:34:07 2002 Usaku Nakamura <[email protected]> + + * bignum.c (rb_big_2comp): void function cannot return any value. + Tue Feb 26 15:41:30 2002 Yukihiro Matsumoto <[email protected]> * eval.c (rb_eval): call trace_func for if/while conditions. @@ -101,7 +101,7 @@ void rb_big_2comp(x) /* get 2's complement */ VALUE x; { - return get2comp(x, Qtrue); + get2comp(x, Qtrue); } static VALUE |