summaryrefslogtreecommitdiff
path: root/ext/phar/phar.c
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2011-07-25 11:42:53 +0000
committerFelipe Pena <felipe@php.net>2011-07-25 11:42:53 +0000
commit23e438594d30c3507644575fa39c9736f19d1fe8 (patch)
treec69687778862780987fae3d3cf05b44210d5b04b /ext/phar/phar.c
parent054e1cafa0f7d83bf9318431cc0ea54a5ff6afaf (diff)
downloadphp-git-23e438594d30c3507644575fa39c9736f19d1fe8.tar.gz
- Make usage of new PHP_FE_END macro
Diffstat (limited to 'ext/phar/phar.c')
-rw-r--r--ext/phar/phar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/phar/phar.c b/ext/phar/phar.c
index 9026be202d..1c5e6783e5 100644
--- a/ext/phar/phar.c
+++ b/ext/phar/phar.c
@@ -3292,8 +3292,8 @@ ZEND_GET_MODULE(phar)
*
* Every user visible function must have an entry in phar_functions[].
*/
-function_entry phar_functions[] = {
- {NULL, NULL, NULL} /* Must be the last line in phar_functions[] */
+zend_function_entry phar_functions[] = {
+ PHP_FE_END
};
/* }}}*/