]> granicus.if.org Git - php/commitdiff
Update to match new prototype
authorWez Furlong <wez@php.net>
Tue, 18 May 2004 08:47:10 +0000 (08:47 +0000)
committerWez Furlong <wez@php.net>
Tue, 18 May 2004 08:47:10 +0000 (08:47 +0000)
ext/pdo_odbc/odbc_driver.c

index a2f4201b08abc86579a266a19b65490300177fa4..ca16bf6b6430f96af74841b2237fffba0846eba1 100755 (executable)
@@ -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;