From: George Schlossnagle Date: Tue, 18 May 2004 05:01:16 +0000 (+0000) Subject: use new prototype X-Git-Tag: RELEASE_0_1~164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d40971563020f786a5bcff7e3cfd1e28008ea92;p=php use new prototype --- diff --git a/ext/pdo_oci/oci_driver.c b/ext/pdo_oci/oci_driver.c index 3c39a9e553..417ee3b95c 100755 --- a/ext/pdo_oci/oci_driver.c +++ b/ext/pdo_oci/oci_driver.c @@ -171,7 +171,7 @@ static int oci_handle_doer(pdo_dbh_t *dbh, const char *sql TSRMLS_DC) return 0; } -static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, char **quoted, int *quotedlen TSRMLS_DC) +static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC) { pdo_oci_db_handle *H = (pdo_oci_db_handle *)dbh->driver_data;