mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
- Reverted php_printf -> printf change
This commit is contained in:
parent
7497a0eb4a
commit
4296f07fcc
1 changed files with 2 additions and 2 deletions
|
@ -172,7 +172,7 @@ const opt_struct OPTIONS[] = {
|
||||||
|
|
||||||
static int print_module_info(zend_module_entry *module TSRMLS_DC) /* {{{ */
|
static int print_module_info(zend_module_entry *module TSRMLS_DC) /* {{{ */
|
||||||
{
|
{
|
||||||
printf("%s\n", module->name);
|
php_printf("%s\n", module->name);
|
||||||
return ZEND_HASH_APPLY_KEEP;
|
return ZEND_HASH_APPLY_KEEP;
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
@ -202,7 +202,7 @@ static void print_modules(TSRMLS_D) /* {{{ */
|
||||||
|
|
||||||
static int print_extension_info(zend_extension *ext, void *arg TSRMLS_DC) /* {{{ */
|
static int print_extension_info(zend_extension *ext, void *arg TSRMLS_DC) /* {{{ */
|
||||||
{
|
{
|
||||||
printf("%s\n", ext->name);
|
php_printf("%s\n", ext->name);
|
||||||
return ZEND_HASH_APPLY_KEEP;
|
return ZEND_HASH_APPLY_KEEP;
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue