summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/sqlite_driver.c
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2005-02-06 22:34:53 +0000
committerWez Furlong <wez@php.net>2005-02-06 22:34:53 +0000
commitd87c5ec288e584d7af07cc300e0457025d41e31d (patch)
treef57df2b3b16e5d6b757b818845ec72b9c6903a4e /ext/pdo_sqlite/sqlite_driver.c
parent3130ed30663f06661504099b0b872b200b7d6848 (diff)
downloadphp-git-d87c5ec288e584d7af07cc300e0457025d41e31d.tar.gz
update for api changes
Diffstat (limited to 'ext/pdo_sqlite/sqlite_driver.c')
-rw-r--r--ext/pdo_sqlite/sqlite_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/sqlite_driver.c b/ext/pdo_sqlite/sqlite_driver.c
index 878e0daa55..8ba33d1dd9 100644
--- a/ext/pdo_sqlite/sqlite_driver.c
+++ b/ext/pdo_sqlite/sqlite_driver.c
@@ -164,7 +164,7 @@ static long pdo_sqlite_last_insert_id(pdo_dbh_t *dbh TSRMLS_DC)
}
/* NB: doesn't handle binary strings... use prepared stmts for that */
-static int sqlite_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC)
+static int sqlite_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
{
pdo_sqlite_db_handle *H = (pdo_sqlite_db_handle *)dbh->driver_data;
*quoted = emalloc(2*unquotedlen + 3);