diff options
author | Felipe Pena <felipe@php.net> | 2011-07-25 11:42:53 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-07-25 11:42:53 +0000 |
commit | 23e438594d30c3507644575fa39c9736f19d1fe8 (patch) | |
tree | c69687778862780987fae3d3cf05b44210d5b04b /ext/phar/phar.c | |
parent | 054e1cafa0f7d83bf9318431cc0ea54a5ff6afaf (diff) | |
download | php-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.c | 4 |
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 }; /* }}}*/ |