summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
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;
}