From dca2743a1c130f097efcbb2d35fc95dd7dcfe22b Mon Sep 17 00:00:00 2001 From: knu Date: Sun, 6 Feb 2005 03:23:41 +0000 Subject: * 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 --- bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index 8100a1e05a..3fecbdcc84 100644 --- a/bignum.c +++ b/bignum.c @@ -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; } -- cgit v1.2.1