summaryrefslogtreecommitdiff
path: root/ext/sqlite3/sqlite3.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-21 15:51:09 +0200
committerAnatol Belski <ab@php.net>2014-08-21 15:51:09 +0200
commit5eef3a9eedf6a7ebc4df06ba02abd13068fcb5c0 (patch)
treea1375a3e75db691e0084c1efa1b9a41b956ae740 /ext/sqlite3/sqlite3.c
parentff853d2fe0ef57568d7574221ea2f823d8360b70 (diff)
downloadphp-git-5eef3a9eedf6a7ebc4df06ba02abd13068fcb5c0.tar.gz
fix zpp
Diffstat (limited to 'ext/sqlite3/sqlite3.c')
-rw-r--r--ext/sqlite3/sqlite3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c
index 33ba6f59c3..6643506c1a 100644
--- a/ext/sqlite3/sqlite3.c
+++ b/ext/sqlite3/sqlite3.c
@@ -1439,7 +1439,7 @@ PHP_METHOD(sqlite3stmt, bindValue)
param.type = SQLITE3_TEXT;
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "iz/|i", &param.param_number, &parameter, &param.type) == FAILURE) {
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Sz/|l", &param.name, &parameter, &param.type) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Sz/|i", &param.name, &parameter, &param.type) == FAILURE) {
return;
}
}