summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2005-01-21 00:39:03 +0000
committerWez Furlong <wez@php.net>2005-01-21 00:39:03 +0000
commit26f97a911bb931ac911bb1b1735a5f46c4d14777 (patch)
treec986ad716e409ffa72968e583715737729b84276 /ext/pdo_firebird
parentdcd3d84ddb4c0d79437b93cf1cf71d2793749f77 (diff)
downloadphp-git-26f97a911bb931ac911bb1b1735a5f46c4d14777.tar.gz
Eliminate unused parameter.
Don't start a transaction when asking for a cursor with pgsql. Fix parameter binding for sqlite3
Diffstat (limited to 'ext/pdo_firebird')
-rw-r--r--ext/pdo_firebird/firebird_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_firebird/firebird_driver.c b/ext/pdo_firebird/firebird_driver.c
index 27335affb5..a9f39c6b32 100644
--- a/ext/pdo_firebird/firebird_driver.c
+++ b/ext/pdo_firebird/firebird_driver.c
@@ -120,7 +120,7 @@ static int firebird_handle_closer(pdo_dbh_t *dbh TSRMLS_DC) /* {{{ */
/* called by PDO to prepare an SQL query */
static int firebird_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, /* {{{ */
- pdo_stmt_t *stmt, long options, zval *driver_options TSRMLS_DC)
+ pdo_stmt_t *stmt, zval *driver_options TSRMLS_DC)
{
pdo_firebird_db_handle *H = (pdo_firebird_db_handle *)dbh->driver_data;
pdo_firebird_stmt *S = NULL;