Remove return value from llist apply functions

Unlike the hash apply functions, these do not return int.
This commit is contained in:
Nikita Popov 2020-04-15 10:59:58 +02:00
parent 9043563775
commit d68dfaf05e
6 changed files with 8 additions and 14 deletions

View file

@ -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;
}
/* }}} */