diff options
author | foobar <sniper@php.net> | 2005-06-17 13:12:31 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-06-17 13:12:31 +0000 |
commit | a81ac8d04b05dd25d6073546e6214a97c553fac6 (patch) | |
tree | edae38e8c2e389fd2c951dc84701c8fa1d500d98 /ext/sqlite/pdo_sqlite2.c | |
parent | f4de0395228d5ef3996af7eb886145fed2f22b18 (diff) | |
download | php-git-a81ac8d04b05dd25d6073546e6214a97c553fac6.tar.gz |
nuke unused variable
Diffstat (limited to 'ext/sqlite/pdo_sqlite2.c')
-rw-r--r-- | ext/sqlite/pdo_sqlite2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite/pdo_sqlite2.c b/ext/sqlite/pdo_sqlite2.c index c797dbe8a7..bd2cd0768e 100644 --- a/ext/sqlite/pdo_sqlite2.c +++ b/ext/sqlite/pdo_sqlite2.c @@ -22,7 +22,7 @@ #endif #include "php.h" -#if PHP_SQLITE2_HAVE_PDO +#ifdef PHP_SQLITE2_HAVE_PDO #include "sqlite.h" #include "pdo/php_pdo.h" #include "pdo/php_pdo_driver.h" @@ -562,7 +562,7 @@ static int authorizer(void *autharg, int access_type, const char *arg3, const ch static int pdo_sqlite2_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_DC) /* {{{ */ { pdo_sqlite2_db_handle *H; - int i, ret = 0; + int ret = 0; long timeout = 60; char *filename; char *errmsg = NULL; |