mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
401805ec13
commit
ae6fd90c18
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Jun 16 18:06:33 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* numeric.c (rb_fix2uint): renamed from rb_fix2int on IA64.
|
||||
|
||||
Mon Jun 16 17:02:57 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||
|
||||
* eval.c (proc_invoke): format the message for localjump_error().
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue