diff options
author | Felipe Pena <felipe@php.net> | 2011-07-25 11:35:02 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-07-25 11:35:02 +0000 |
commit | 4b30846b50b3c42d6787f82fe37525028e094a09 (patch) | |
tree | 22d19ea6d7814d03f3fb8587d996b37cb42841f8 /ext/spl/php_spl.c | |
parent | f1f2a649e299b9b997d38977909bd54c52f5c4e3 (diff) | |
download | php-git-4b30846b50b3c42d6787f82fe37525028e094a09.tar.gz |
- Make usage of new PHP_FE_END macro
Diffstat (limited to 'ext/spl/php_spl.c')
-rwxr-xr-x | ext/spl/php_spl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 8b49b6c5e1..5caa4c9825 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -1012,14 +1012,14 @@ const zend_function_entry spl_functions[] = { PHP_FE(spl_autoload_call, arginfo_spl_autoload_call) PHP_FE(class_parents, arginfo_class_parents) PHP_FE(class_implements, arginfo_class_implements) - PHP_FE(class_uses, arginfo_class_uses) + PHP_FE(class_uses, arginfo_class_uses) PHP_FE(spl_object_hash, arginfo_spl_object_hash) #ifdef SPL_ITERATORS_H PHP_FE(iterator_to_array, arginfo_iterator_to_array) PHP_FE(iterator_count, arginfo_iterator) PHP_FE(iterator_apply, arginfo_iterator_apply) #endif /* SPL_ITERATORS_H */ - {NULL, NULL, NULL} + PHP_FE_END }; /* }}} */ |