summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
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 811452bfb0..56256ea3fe 100644
--- a/hash.c
+++ b/hash.c
@@ -535,7 +535,7 @@ static VALUE
hash_each_value(hash)
VALUE hash;
{
- hash_foreach(hash, each_value_i);
+ hash_foreach(hash, each_value_i, 0);
return hash;
}
@@ -552,7 +552,7 @@ static VALUE
hash_each_key(hash)
VALUE hash;
{
- hash_foreach(hash, each_key_i);
+ hash_foreach(hash, each_key_i, 0);
return hash;
}