summaryrefslogtreecommitdiff
path: root/Zend/zend_API.c
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2011-08-06 01:22:27 +0000
committerFelipe Pena <felipe@php.net>2011-08-06 01:22:27 +0000
commit783b05326a602c669141aa317a18ab07f73a6298 (patch)
treedc802e8eaf7cf90d56e6e332e20e1509761ac182 /Zend/zend_API.c
parent7c1cb2693732ba37e301dac9b93bb511c00abac4 (diff)
downloadphp-git-783b05326a602c669141aa317a18ab07f73a6298.tar.gz
- Added missing PHP_FE_END/ZEND_FE_END
Diffstat (limited to 'Zend/zend_API.c')
-rw-r--r--Zend/zend_API.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c
index fa9d8a0686..fb49767e03 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -2505,7 +2505,7 @@ ZEND_API ZEND_FUNCTION(display_disabled_function)
static zend_function_entry disabled_function[] = {
ZEND_FE(display_disabled_function, NULL)
- { NULL, NULL, NULL }
+ ZEND_FE_END
};
ZEND_API int zend_disable_function(char *function_name, uint function_name_length TSRMLS_DC) /* {{{ */
@@ -2529,7 +2529,7 @@ static zend_object_value display_disabled_class(zend_class_entry *class_type TSR
/* }}} */
static const zend_function_entry disabled_class_new[] = {
- { NULL, NULL, NULL }
+ ZEND_FE_END
};
ZEND_API int zend_disable_class(char *class_name, uint class_name_length TSRMLS_DC) /* {{{ */