summaryrefslogtreecommitdiff
path: root/ext/spl/spl_functions.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-04-12 13:02:54 +0000
committerMarcus Boerger <helly@php.net>2004-04-12 13:02:54 +0000
commit33cdc9ed368beb5d185006d9aafda5e04de9cb23 (patch)
treebe0be383da76edd4c7a5115d63c01277c5e9b90d /ext/spl/spl_functions.h
parent67502a2e7d2f2711b65ecca6b41bfa7c1dcf5249 (diff)
downloadphp-git-33cdc9ed368beb5d185006d9aafda5e04de9cb23.tar.gz
Fix order of macro parameter (synch with other macros)
Diffstat (limited to 'ext/spl/spl_functions.h')
-rwxr-xr-xext/spl/spl_functions.h2
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 */
/*