summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-18 08:05:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-18 08:05:32 +0000
commitc3c29381b8c90a4cc27e08f1e8a337a95037c90f (patch)
treebdb9cf7c15bd7db7fdaa0ddf4ee53e03e58f5780 /hash.c
parent932b5cf7115dcd87435f2c2ab2f054e94b9ef367 (diff)
downloadruby-c3c29381b8c90a4cc27e08f1e8a337a95037c90f.tar.gz
ruby-c3c29381b8c90a4cc27e08f1e8a337a95037c90f.tar.xz
ruby-c3c29381b8c90a4cc27e08f1e8a337a95037c90f.zip
* suppressed shorten-64-to-32 warnings.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index da47b55be..c4eac855f 100644
--- a/hash.c
+++ b/hash.c
@@ -1516,7 +1516,7 @@ hash_equal(VALUE hash1, VALUE hash2, int eql)
static VALUE
rb_hash_equal(VALUE hash1, VALUE hash2)
{
- return hash_equal(hash1, hash2, Qfalse);
+ return hash_equal(hash1, hash2, FALSE);
}
/*
@@ -1530,7 +1530,7 @@ rb_hash_equal(VALUE hash1, VALUE hash2)
static VALUE
rb_hash_eql(VALUE hash1, VALUE hash2)
{
- return hash_equal(hash1, hash2, Qtrue);
+ return hash_equal(hash1, hash2, TRUE);
}
static int