From 5a9864ed2b2f09c7ddec73aee368e39e7c01cdb5 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Tue, 18 May 2004 08:47:10 +0000 Subject: [PATCH] Update to match new prototype --- ext/pdo_odbc/odbc_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo_odbc/odbc_driver.c b/ext/pdo_odbc/odbc_driver.c index a2f4201b08..ca16bf6b64 100755 --- a/ext/pdo_odbc/odbc_driver.c +++ b/ext/pdo_odbc/odbc_driver.c @@ -101,7 +101,7 @@ static int odbc_handle_doer(pdo_dbh_t *dbh, const char *sql TSRMLS_DC) return 0; } -static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, char **quoted, int *quotedlen TSRMLS_DC) +static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC) { pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data; -- 2.50.1