From a1f4163dd330d2cddbde0fa3407713e2338a2e7b Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 15 Mar 2012 21:30:12 +0000 Subject: * enumerator.c (lazy_zip_func): variadic argument needs explicit cast on the platforms where VALUE is longer than int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35049 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enumerator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'enumerator.c') diff --git a/enumerator.c b/enumerator.c index f79bb06577..c473260479 100644 --- a/enumerator.c +++ b/enumerator.c @@ -1420,7 +1420,7 @@ lazy_zip_func(VALUE val, VALUE arg, int argc, VALUE *argv) rb_ary_push(ary, argv[1]); for (i = 0; i < RARRAY_LEN(arg); i++) { v = rb_rescue2(call_next, RARRAY_PTR(arg)[i], next_stopped, 0, - rb_eStopIteration, 0); + rb_eStopIteration, (VALUE)0); rb_ary_push(ary, v); } rb_funcall(yielder, id_yield, 1, ary); -- cgit v1.2.3