summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2020-04-12 18:23:54 +0200
committerGeorge Peter Banyard <girgias@php.net>2020-04-13 23:03:31 +0200
commit446724bcd901428035df8cbfe27b1ccba82a85f6 (patch)
tree0263a66fbca99f630d062b9142f5d3fe4173f242 /Zend/zend_execute_API.c
parent1bba691eccb9970e4de7f31c9ac64ac055655bfb (diff)
downloadphp-git-446724bcd901428035df8cbfe27b1ccba82a85f6.tar.gz
Fix [-Werror=missing-braces] compiler warning
Partial fix to bug 79431
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index 514c40ec1b..1c7c904b19 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -46,7 +46,7 @@ ZEND_API void (*zend_execute_ex)(zend_execute_data *execute_data);
ZEND_API void (*zend_execute_internal)(zend_execute_data *execute_data, zval *return_value);
/* true globals */
-ZEND_API const zend_fcall_info empty_fcall_info = { 0, {{0}, {{0}}, {0}}, NULL, NULL, NULL, 0, 0 };
+ZEND_API const zend_fcall_info empty_fcall_info = {0};
ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { NULL, NULL, NULL, NULL };
#ifdef ZEND_WIN32