summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-21 13:57:16 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-21 13:57:16 +0000
commitc5377c2bccb7c46e4f8a958f0ddfd487c487000c (patch)
treeb164f0dc00ee8fe1d39b17d7a0d10e3ebd2f9cea /hash.c
parent42a6550027acfae936ba4038ca3b2a3e5ed479b2 (diff)
* io.c (open_key_args): should adjust argc, argv in struct
foreach_arg. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 044964c809..19646004eb 100644
--- a/hash.c
+++ b/hash.c
@@ -79,7 +79,7 @@ rb_any_hash(VALUE a)
default:
hval = rb_funcall(a, id_hash, 0);
if (!FIXNUM_P(hval)) {
- hval = rb_funcall(hval, '%', 1, INT2FIX(536870923));
+ hval = rb_funcall(hval, '%', 1, INT2FIX(5368709231));
}
hnum = (int)FIX2LONG(hval);
}