diff options
author | Felipe Pena <felipe@php.net> | 2010-06-26 16:03:39 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-06-26 16:03:39 +0000 |
commit | e64734f986a2e7db28f467d22a350d7c457ff4b4 (patch) | |
tree | 7e30a73e86d2c68f0bb37309dac0cdbf14eb251d /ext/posix | |
parent | 22458ed4d5d34952d473c4c677c987fe253f22bd (diff) | |
download | php-git-e64734f986a2e7db28f467d22a350d7c457ff4b4.tar.gz |
- Fixed bug #52183 (Reflectionfunction reports invalid number of arguments for function aliases)
Diffstat (limited to 'ext/posix')
-rw-r--r-- | ext/posix/posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/posix/posix.c b/ext/posix/posix.c index 01f8d407fd..aeaae224b2 100644 --- a/ext/posix/posix.c +++ b/ext/posix/posix.c @@ -295,7 +295,7 @@ const zend_function_entry posix_functions[] = { #endif PHP_FE(posix_get_last_error, arginfo_posix_get_last_error) - PHP_FALIAS(posix_errno, posix_get_last_error, NULL) + PHP_FALIAS(posix_errno, posix_get_last_error, arginfo_posix_get_last_error) PHP_FE(posix_strerror, arginfo_posix_strerror) #ifdef HAVE_INITGROUPS PHP_FE(posix_initgroups, arginfo_posix_initgroups) |