1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix initializer warning in apache2handler

This commit is contained in:
Nikita Popov
2021-09-16 16:52:38 +02:00
parent 3d3bb79973
commit 13fa90fb55

View File

@@ -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 */
};