From d68dfaf05e88b5962416a656d625f53bb0288236 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Wed, 15 Apr 2020 10:59:58 +0200 Subject: Remove return value from llist apply functions Unlike the hash apply functions, these do not return int. --- sapi/cli/php_cli.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sapi/cli/php_cli.c') diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index a5aafcd231..d80b2fb95b 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -195,10 +195,9 @@ static void print_modules(void) /* {{{ */ } /* }}} */ -static int print_extension_info(zend_extension *ext, void *arg) /* {{{ */ +static void print_extension_info(zend_extension *ext) /* {{{ */ { php_printf("%s\n", ext->name); - return ZEND_HASH_APPLY_KEEP; } /* }}} */ -- cgit v1.2.1