diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2009-04-16 22:14:28 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2009-04-16 22:14:28 +0000 |
commit | 7fef2270b0c80bec1ff01f5431eb132f54e9f7ad (patch) | |
tree | c7dbe33a481221616b06d1acbc7e0c12a7589fbb /ext/pdo_firebird | |
parent | 0829cb89ee201e5dbb1fd37d4d595bdabf822506 (diff) | |
download | php-git-7fef2270b0c80bec1ff01f5431eb132f54e9f7ad.tar.gz |
Fixed compiler warning
Diffstat (limited to 'ext/pdo_firebird')
-rw-r--r-- | ext/pdo_firebird/firebird_driver.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pdo_firebird/firebird_driver.c b/ext/pdo_firebird/firebird_driver.c index 1c875a2555..a8db55d271 100644 --- a/ext/pdo_firebird/firebird_driver.c +++ b/ext/pdo_firebird/firebird_driver.c @@ -25,6 +25,9 @@ #define _GNU_SOURCE #include "php.h" +#ifdef ZEND_ENGINE_2 +# include "zend_exceptions.h" +#else #include "php_ini.h" #include "ext/standard/info.h" #include "pdo/php_pdo.h" |