diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-06 03:23:41 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-06 03:23:41 +0000 |
commit | dca2743a1c130f097efcbb2d35fc95dd7dcfe22b (patch) | |
tree | 59089917e5bea977d2b1d31b220e6f510bb21eae /bignum.c | |
parent | 9e21bb08c141d11e18f115e00edaed780a33dbc2 (diff) | |
download | ruby-dca2743a1c130f097efcbb2d35fc95dd7dcfe22b.tar.gz |
* bignum.c (rb_big2ulong_pack): One too many arguments are passed
to big2ulong().
* re.c (_reg_init_copy, rb_reg_initialize_m): One too many
arguments are passed to rb_reg_initialize().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r-- | bignum.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -751,7 +751,7 @@ unsigned long rb_big2ulong_pack(x) VALUE x; { - unsigned long num = big2ulong(x, "unsigned long", Qfalse); + unsigned long num = big2ulong(x, "unsigned long"); if (!RBIGNUM(x)->sign) { return -num; } |