From 592a629bd0185060101f14db80fa1d5552380031 Mon Sep 17 00:00:00 2001 From: shugo Date: Mon, 19 Mar 2012 07:39:12 +0000 Subject: * enum.c (zip_i): 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@35091 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'enum.c') diff --git a/enum.c b/enum.c index fd5ba1cd48..24db7b23f1 100644 --- a/enum.c +++ b/enum.c @@ -1943,7 +1943,7 @@ zip_i(VALUE val, NODE *memo, int argc, VALUE *argv) VALUE v[2]; v[1] = RARRAY_PTR(args)[i]; - rb_rescue2(call_next, (VALUE)v, call_stop, (VALUE)v, rb_eStopIteration, 0); + rb_rescue2(call_next, (VALUE)v, call_stop, (VALUE)v, rb_eStopIteration, (VALUE)0); if (v[0] == Qundef) { RARRAY_PTR(args)[i] = Qnil; v[0] = Qnil; -- cgit v1.2.3