From: Wez Furlong Date: Tue, 18 May 2004 08:47:10 +0000 (+0000) Subject: Update to match new prototype X-Git-Tag: RELEASE_0_1~160 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a9864ed2b2f09c7ddec73aee368e39e7c01cdb5;p=php Update to match new prototype --- 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;