diff options
| author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-04 06:58:43 +0000 |
|---|---|---|
| committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-04 06:58:43 +0000 |
| commit | b542538fb6429f0618134f3ac49247b344eca71d (patch) | |
| tree | 8e3c335fef1b6a25b4c044e389019cafa2bd6378 | |
| parent | 7a95737dc9f2fb078d2613ee15ea259c53b3366e (diff) | |
| download | ruby-b542538fb6429f0618134f3ac49247b344eca71d.tar.gz ruby-b542538fb6429f0618134f3ac49247b344eca71d.tar.xz ruby-b542538fb6429f0618134f3ac49247b344eca71d.zip | |
* numeric.c (fix_to_s): (2**32).to_s(2) fails with exception where
sizeof(int) == 4 < sizeof(long). [ruby-core:7300]
I think the function name of rb_int2big is quite misleading.
This should be "rb_long2big".
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | numeric.c | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +Sat Feb 4 15:52:56 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * numeric.c (fix_to_s): (2**32).to_s(2) fails with exception where + sizeof(int) == 4 < sizeof(long). [ruby-core:7300] + + I think the function name of rb_int2big is quite misleading. + This should be "rb_long2big". + Fri Feb 3 19:25:53 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> * ruby.h: fixed prototype. @@ -1884,7 +1884,7 @@ fix_to_s(int argc, VALUE *argv, VALUE x) if (base == 2) { /* rb_fix2str() does not handle binary */ - return rb_big2str(rb_int2big(FIX2INT(x)), 2); + return rb_big2str(rb_int2big(FIX2LONG(x)), 2); } return rb_fix2str(x, base); } |
