Skip to content

Commit

Permalink
Fix bug #62186 readline fails to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes committed May 30, 2012
1 parent 9b98cf7 commit 428dddd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion NEWS
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion ext/readline/readline.c
Expand Up @@ -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);
}

/* }}} */
Expand Down

0 comments on commit 428dddd

Please sign in to comment.