1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/fiddle/function.c: fix build error introduced at r53082.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2015-12-13 10:25:01 +00:00
parent add73a8713
commit de577357e8

View file

@ -93,7 +93,7 @@ initialize(int argc, VALUE argv[], VALUE self)
ffi_cif * cif; ffi_cif * cif;
ffi_type **arg_types, *rtype; ffi_type **arg_types, *rtype;
ffi_status result; ffi_status result;
VALUE ptr, args, ret_type, abi, kwds; VALUE ptr, args, ret_type, abi, kwds, ary;
long i, len; long i, len;
int nabi; int nabi;
void *cfunc; void *cfunc;