From e18654fff2a05a044f32dcd071f3925320151b38 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 17 Feb 2016 02:38:09 +0000 Subject: numeric.c: adjust types * numeric.c (coerce_body, coerce_rescue, coerce_rescue_quiet): adjust parameter types for rb_rescue. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53847 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/numeric.c b/numeric.c index 6f094c1cde..e49ce535e0 100644 --- a/numeric.c +++ b/numeric.c @@ -239,8 +239,9 @@ num_coerce(VALUE x, VALUE y) } static VALUE -coerce_body(VALUE *x) +coerce_body(VALUE arg) { + VALUE *x = (VALUE *)arg; return rb_funcall(x[1], id_coerce, 1, x[0]); } @@ -259,14 +260,15 @@ coerce_failed(VALUE x, VALUE y) } static VALUE -coerce_rescue(VALUE *x) +coerce_rescue(VALUE arg) { + VALUE *x = (VALUE *)arg; coerce_failed(x[0], x[1]); return Qnil; /* dummy */ } static VALUE -coerce_rescue_quiet(VALUE *x) +coerce_rescue_quiet(VALUE arg) { return Qundef; } @@ -281,7 +283,7 @@ do_coerce(VALUE *x, VALUE *y, int err) if (!rb_respond_to(*y, id_coerce)) { if (err) { - coerce_rescue(a); + coerce_failed(*x, *y); } return FALSE; } -- cgit v1.2.3