From 13fa90fb55cae9c386c3e69c3972b5c45ddbbd92 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 16 Sep 2021 16:52:38 +0200 Subject: [PATCH] Fix initializer warning in apache2handler --- sapi/apache2handler/mod_php.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sapi/apache2handler/mod_php.c b/sapi/apache2handler/mod_php.c index d22ca287517..c7308fe2df6 100644 --- a/sapi/apache2handler/mod_php.c +++ b/sapi/apache2handler/mod_php.c @@ -34,5 +34,6 @@ AP_MODULE_DECLARE_DATA module php_module = { NULL, /* create per-server config structure */ NULL, /* merge per-server config structures */ php_dir_cmds, /* command apr_table_t */ - php_ap2_register_hook /* register hooks */ + php_ap2_register_hook, /* register hooks */ + 0 /* flags */ };