mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Remove return value from llist apply functions
Unlike the hash apply functions, these do not return int.
This commit is contained in:
parent
9043563775
commit
d68dfaf05e
6 changed files with 8 additions and 14 deletions
|
@ -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;
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue