diff options
author | Marcus Boerger <helly@php.net> | 2004-04-12 13:02:54 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-04-12 13:02:54 +0000 |
commit | 33cdc9ed368beb5d185006d9aafda5e04de9cb23 (patch) | |
tree | be0be383da76edd4c7a5115d63c01277c5e9b90d /ext/spl | |
parent | 67502a2e7d2f2711b65ecca6b41bfa7c1dcf5249 (diff) | |
download | php-git-33cdc9ed368beb5d185006d9aafda5e04de9cb23.tar.gz |
Fix order of macro parameter (synch with other macros)
Diffstat (limited to 'ext/spl')
-rwxr-xr-x | ext/spl/spl_functions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_functions.h b/ext/spl/spl_functions.h index a849ba47e6..1383c299bf 100755 --- a/ext/spl/spl_functions.h +++ b/ext/spl/spl_functions.h @@ -82,7 +82,7 @@ int spl_add_classes(zend_class_entry ** ppce, zval *list, int sub, int allow, in PHP_METHOD(spl_ ## class_name, function_name) #define SPL_MA(class_name, function_name, alias_class, alias_function, arg_info, flags) \ - ZEND_MALIAS(function_name, spl_ ## alias_class, alias_function, arg_info, flags) + ZEND_MALIAS(spl_ ## alias_class, function_name, alias_function, arg_info, flags) #endif /* PHP_FUNCTIONS_H */ /* |