mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ruby/ruby.h: RB_BLOCK_CALL_FUNC_ARGLIST
* include/ruby/ruby.h (RB_BLOCK_CALL_FUNC_ARGLIST): for declaration argument list of rb_block_call_func. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f0e73fc986
commit
7566c49068
20 changed files with 100 additions and 92 deletions
|
|
@ -624,7 +624,7 @@ pkcs7_get_crls(VALUE self)
|
|||
}
|
||||
|
||||
static VALUE
|
||||
ossl_pkcs7_set_certs_i(VALUE i, VALUE arg)
|
||||
ossl_pkcs7_set_certs_i(RB_BLOCK_CALL_FUNC_ARGLIST(i, arg))
|
||||
{
|
||||
return ossl_pkcs7_add_certificate(arg, i);
|
||||
}
|
||||
|
|
@ -664,7 +664,7 @@ ossl_pkcs7_add_crl(VALUE self, VALUE crl)
|
|||
}
|
||||
|
||||
static VALUE
|
||||
ossl_pkcs7_set_crls_i(VALUE i, VALUE arg)
|
||||
ossl_pkcs7_set_crls_i(RB_BLOCK_CALL_FUNC_ARGLIST(i, arg))
|
||||
{
|
||||
return ossl_pkcs7_add_crl(arg, i);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue