mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
ext/standard/filters.c: Use zend_result return type instead of int
This commit is contained in:
parent
2baadf3807
commit
9cfe9e10ba
1 changed files with 2 additions and 2 deletions
|
@ -1279,7 +1279,7 @@ out_failure:
|
|||
#undef GET_UINT_PROP
|
||||
#undef GET_BOOL_PROP
|
||||
|
||||
static int php_convert_filter_ctor(php_convert_filter *inst,
|
||||
static zend_result php_convert_filter_ctor(php_convert_filter *inst,
|
||||
int conv_mode, HashTable *conv_opts,
|
||||
const char *filtername, int persistent)
|
||||
{
|
||||
|
@ -1310,7 +1310,7 @@ static void php_convert_filter_dtor(php_convert_filter *inst)
|
|||
}
|
||||
|
||||
/* {{{ strfilter_convert_append_bucket */
|
||||
static int strfilter_convert_append_bucket(
|
||||
static zend_result strfilter_convert_append_bucket(
|
||||
php_convert_filter *inst,
|
||||
php_stream *stream, php_stream_filter *filter,
|
||||
php_stream_bucket_brigade *buckets_out,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue