]> granicus.if.org Git - php/commitdiff
- Reverted php_printf -> printf change
authorFelipe Pena <felipe@php.net>
Fri, 1 Jul 2011 17:18:50 +0000 (17:18 +0000)
committerFelipe Pena <felipe@php.net>
Fri, 1 Jul 2011 17:18:50 +0000 (17:18 +0000)
sapi/cli/php_cli.c

index 81a2d259593bb8d175554484e1ee47b246db80e4..64278af0da92a1308b4ccc8f2c2f9ed992e3b49c 100644 (file)
@@ -172,7 +172,7 @@ const opt_struct OPTIONS[] = {
 
 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;
 }
 /* }}} */
@@ -202,7 +202,7 @@ static void print_modules(TSRMLS_D) /* {{{ */
 
 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;
 }
 /* }}} */