From 4207990990f8c8da414710816c32ae5fd0ae6987 Mon Sep 17 00:00:00 2001 From: Yukihiro Matsumoto Date: Thu, 25 Dec 1997 17:06:30 +0900 Subject: version 1.0-971225 https://cache.ruby-lang.org/pub/ruby/1.0/ruby-1.0-971225.tar.gz Thu Dec 25 17:06:30 1997 Yukihiro Matsumoto * version 1.0-971225 * some minor bug fixes. --- hash.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'hash.c') diff --git a/hash.c b/hash.c index 0ced1d5a51..e93c85a445 100644 --- a/hash.c +++ b/hash.c @@ -108,11 +108,12 @@ hash_foreach_iter(key, value, arg) return status; } -static int +static VALUE hash_foreach_call(arg) struct hash_foreach_arg *arg; { - return st_foreach(arg->hash->tbl, hash_foreach_iter, arg); + st_foreach(arg->hash->tbl, hash_foreach_iter, arg); + return Qnil; } static int -- cgit v1.2.3