Fix bug #62186 readline fails to compile

This commit is contained in:
Johannes Schlüter 2012-05-31 01:15:22 +02:00
parent 9b98cf7865
commit 428dddd3e8
2 changed files with 6 additions and 2 deletions

6
NEWS
View File

@ -82,7 +82,11 @@ PHP NEWS
- Libxml:
. Fixed bug #61617 (Libxml tests failed(ht is already destroyed)).
(Laruence)
- Readline:
. Fixed bug #62186 (readline fails to compile - void function should not
return a value). (Johannes)
- Sockets:
. Fixed bug #62025 (__ss_family was changed on AIX 5.3). (Felipe)

View File

@ -198,7 +198,7 @@ PHP_RSHUTDOWN_FUNCTION(readline)
PHP_MINFO_FUNCTION(readline)
{
return PHP_MINFO(cli_readline)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
PHP_MINFO(cli_readline)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
}
/* }}} */