felipe Fri, 01 Jul 2011 17:18:50 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=312776
Log: - Reverted php_printf -> printf change Changed paths: U php/php-src/branches/PHP_5_4/sapi/cli/php_cli.c U php/php-src/trunk/sapi/cli/php_cli.c Modified: php/php-src/branches/PHP_5_4/sapi/cli/php_cli.c =================================================================== --- php/php-src/branches/PHP_5_4/sapi/cli/php_cli.c 2011-07-01 16:57:04 UTC (rev 312775) +++ php/php-src/branches/PHP_5_4/sapi/cli/php_cli.c 2011-07-01 17:18:50 UTC (rev 312776) @@ -172,7 +172,7 @@ 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 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; } /* }}} */ Modified: php/php-src/trunk/sapi/cli/php_cli.c =================================================================== --- php/php-src/trunk/sapi/cli/php_cli.c 2011-07-01 16:57:04 UTC (rev 312775) +++ php/php-src/trunk/sapi/cli/php_cli.c 2011-07-01 17:18:50 UTC (rev 312776) @@ -172,7 +172,7 @@ 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 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; } /* }}} */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php