From 85037bbfadb146ccaf81395cdabffa36b64268e9 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Wed, 14 Oct 2009 19:29:37 +0000 Subject: [PATCH] zend_module_dep is no const and breaks strict compilers like CodeWarrior for NetWare. --- ext/session/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} }; -- 2.50.1