diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-06-16 09:10:17 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-06-16 09:10:17 +0000 |
commit | ae6fd90c18f7fe4b1729d2e3d55bb2bff3418229 (patch) | |
tree | a7e2e6036960d94bc3857ebf19e301e51411d8bb /numeric.c | |
parent | 401805ec1330c761ee922e895f797da05968ca20 (diff) |
* numeric.c (rb_fix2uint): renamed from rb_fix2int on IA64.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r-- | numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1058,7 +1058,7 @@ rb_num2uint(val) } unsigned int -rb_fix2int(val) +rb_fix2uint(val) VALUE val; { unsigned long num = FIXNUM_P(val)?FIX2LONG(val):rb_num2ulong(val); |