Skip to content

Commit 9cfe9e1

Browse files
committed
ext/standard/filters.c: Use zend_result return type instead of int
1 parent 2baadf3 commit 9cfe9e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/standard/filters.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ static php_conv *php_conv_open(int conv_mode, const HashTable *options, int pers
12791279
#undef GET_UINT_PROP
12801280
#undef GET_BOOL_PROP
12811281

1282-
static int php_convert_filter_ctor(php_convert_filter *inst,
1282+
static zend_result php_convert_filter_ctor(php_convert_filter *inst,
12831283
int conv_mode, HashTable *conv_opts,
12841284
const char *filtername, int persistent)
12851285
{
@@ -1310,7 +1310,7 @@ static void php_convert_filter_dtor(php_convert_filter *inst)
13101310
}
13111311

13121312
/* {{{ strfilter_convert_append_bucket */
1313-
static int strfilter_convert_append_bucket(
1313+
static zend_result strfilter_convert_append_bucket(
13141314
php_convert_filter *inst,
13151315
php_stream *stream, php_stream_filter *filter,
13161316
php_stream_bucket_brigade *buckets_out,

0 commit comments

Comments
 (0)