From: Guenter Knauf Date: Wed, 14 Oct 2009 19:29:37 +0000 (+0000) Subject: zend_module_dep is no const and breaks strict compilers X-Git-Tag: php-5.2.12RC1~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85037bbfadb146ccaf81395cdabffa36b64268e9;p=php zend_module_dep is no const and breaks strict compilers like CodeWarrior for NetWare. --- diff --git a/ext/session/session.c b/ext/session/session.c index 8665bbf602..b244720dc5 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -2107,7 +2107,7 @@ static PHP_MINFO_FUNCTION(session) /* {{{ */ } /* }}} */ -static const zend_module_dep session_deps[] = { /* {{{ */ +static zend_module_dep session_deps[] = { /* {{{ */ ZEND_MOD_OPTIONAL("hash") {NULL, NULL, NULL} };