summaryrefslogtreecommitdiff
path: root/ext/spl/spl_functions.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-11-30 17:05:10 +0000
committerMarcus Boerger <helly@php.net>2003-11-30 17:05:10 +0000
commit34a3019acd759232d14ecd8cdbe9ed4d874dd314 (patch)
tree120e460129450d9106ef24e5c85c6ec1a5dafae4 /ext/spl/spl_functions.h
parent8ef69cf369d13dc78d2cfdca64b109184daf3f75 (diff)
downloadphp-git-34a3019acd759232d14ecd8cdbe9ed4d874dd314.tar.gz
Fix macros
Diffstat (limited to 'ext/spl/spl_functions.h')
-rwxr-xr-xext/spl/spl_functions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/spl_functions.h b/ext/spl/spl_functions.h
index 036e468d80..209e146177 100755
--- a/ext/spl/spl_functions.h
+++ b/ext/spl/spl_functions.h
@@ -65,8 +65,8 @@ int spl_add_classes(zend_class_entry ** ppce, zval *list TSRMLS_DC);
#define SPL_ME(class_name, function_name, arg_info, flags) \
PHP_ME( spl_ ## class_name, function_name, arg_info, flags)
-#define SPL_ABSTRACT_ME(class_name, arg_info, flags) \
- ZEND_ABSTRACT_ME( spl_ ## class_name, arg_info, flags)
+#define SPL_ABSTRACT_ME(class_name, function_name, arg_info) \
+ ZEND_ABSTRACT_ME( spl_ ## class_name, function_name, arg_info)
#define SPL_METHOD(class_name, function_name) \
PHP_METHOD(spl_ ## class_name, function_name)