From 8a94e2d9c32f0899a245ec79294983d45deefe4c Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 13 Dec 2015 10:57:51 +0000 Subject: function.c: fix typo * ext/fiddle/function.c (initialize): fix typo "ary" to "args", and adjust type of variables to suppress warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/fiddle/function.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/fiddle') diff --git a/ext/fiddle/function.c b/ext/fiddle/function.c index d724656774..8e280567db 100644 --- a/ext/fiddle/function.c +++ b/ext/fiddle/function.c @@ -94,7 +94,7 @@ initialize(int argc, VALUE argv[], VALUE self) ffi_type **arg_types, *rtype; ffi_status result; VALUE ptr, args, ret_type, abi, kwds, ary; - long i, len; + int i, len; int nabi; void *cfunc; @@ -110,8 +110,8 @@ initialize(int argc, VALUE argv[], VALUE self) Check_Type(args, T_ARRAY); len = RARRAY_LENINT(args); - Check_Max_Args_Long("args", len); - ary = rb_ary_subseq(ary, 0, len); + Check_Max_Args("args", len); + ary = rb_ary_subseq(args, 0, len); for (i = 0; i < RARRAY_LEN(args); i++) { VALUE a = RARRAY_PTR(args)[i]; int type = NUM2INT(a); -- cgit v1.2.3