diff options
author | Wez Furlong <wez@php.net> | 2004-05-18 08:47:10 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-05-18 08:47:10 +0000 |
commit | 5a9864ed2b2f09c7ddec73aee368e39e7c01cdb5 (patch) | |
tree | f6248f9b415b13b2dc6c96cc91dbce17e80b9d60 /ext/pdo_odbc/odbc_driver.c | |
parent | 940c896e157ed91f07d7af3ba93062e72171e142 (diff) | |
download | php-git-5a9864ed2b2f09c7ddec73aee368e39e7c01cdb5.tar.gz |
Update to match new prototype
Diffstat (limited to 'ext/pdo_odbc/odbc_driver.c')
-rwxr-xr-x | ext/pdo_odbc/odbc_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |