diff --git a/ChangeLog b/ChangeLog index 18a92b7fd5..b117c809f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Sat Feb 4 15:56:37 2006 Hirokazu Yamamoto + + * 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 15:06:50 2006 Hirokazu Yamamoto * ext/syck/syck.c (syck_move_tokens): should reset p->cursor or etc diff --git a/numeric.c b/numeric.c index 0f2cfd9f9e..29fb9f83f2 100644 --- a/numeric.c +++ b/numeric.c @@ -1953,7 +1953,7 @@ fix_to_s(argc, argv, 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); }