summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql/mysql_driver.c
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2005-02-06 23:22:37 +0000
committerWez Furlong <wez@php.net>2005-02-06 23:22:37 +0000
commitd134fb2a8db3957bb487461138e49989f50631b5 (patch)
tree150d777d0fc7c371d003ba0629f1e00710b63b39 /ext/pdo_mysql/mysql_driver.c
parent056907890104b24db46fda321ee9ae2f6a717f05 (diff)
downloadphp-git-d134fb2a8db3957bb487461138e49989f50631b5.tar.gz
update for api changes
Diffstat (limited to 'ext/pdo_mysql/mysql_driver.c')
-rwxr-xr-xext/pdo_mysql/mysql_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c
index 75beed0d5d..b8a7de8098 100755
--- a/ext/pdo_mysql/mysql_driver.c
+++ b/ext/pdo_mysql/mysql_driver.c
@@ -167,7 +167,7 @@ static long pdo_mysql_last_insert_id(pdo_dbh_t *dbh TSRMLS_DC)
return (long) mysql_insert_id(H->server);
}
-static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC)
+static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
{
pdo_mysql_db_handle *H = (pdo_mysql_db_handle *)dbh->driver_data;
*quoted = emalloc(2*unquotedlen + 3);