diff options
author | Jani Taskinen <jani@php.net> | 2009-10-19 15:34:50 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-10-19 15:34:50 +0000 |
commit | 880b090479fdbabbe493b3396ac92171db068b7c (patch) | |
tree | 8061a927031260377dd4aeff5a51321bf098cc18 /ext/pdo_firebird/pdo_firebird.c | |
parent | c0677af8659909449cd30eb12f3ab418c23ae67c (diff) | |
download | php-git-880b090479fdbabbe493b3396ac92171db068b7c.tar.gz |
- It is not const in PHP_5_2 but it is in HEAD and PHP_5_3
Diffstat (limited to 'ext/pdo_firebird/pdo_firebird.c')
-rw-r--r-- | ext/pdo_firebird/pdo_firebird.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_firebird/pdo_firebird.c b/ext/pdo_firebird/pdo_firebird.c index 39a4f31913..b2bedac3de 100644 --- a/ext/pdo_firebird/pdo_firebird.c +++ b/ext/pdo_firebird/pdo_firebird.c @@ -38,7 +38,7 @@ zend_function_entry pdo_firebird_functions[] = { /* {{{ */ /* {{{ pdo_firebird_deps */ #if ZEND_MODULE_API_NO >= 20050922 -static const zend_module_dep pdo_firebird_deps[] = { +static zend_module_dep pdo_firebird_deps[] = { ZEND_MOD_REQUIRED("pdo") {NULL, NULL, NULL} }; |