From bc1c0c2e128ccaf24b0f7200fe04d5d7fe7b23fa Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Mon, 28 Feb 2005 13:30:50 +0000 Subject: [PATCH] Fix type mismatch. --- ext/pdo/pdo_dbh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo/pdo_dbh.c b/ext/pdo/pdo_dbh.c index 61979b15f6..67433c768a 100755 --- a/ext/pdo/pdo_dbh.c +++ b/ext/pdo/pdo_dbh.c @@ -889,7 +889,7 @@ static PHP_METHOD(PDO, quote) int str_len; long paramtype = PDO_PARAM_STR; char *qstr; - size_t qlen; + int qlen; if (FAILURE == zend_parse_parameters(1 TSRMLS_CC, "s|l", &str, &str_len, ¶mtype)) { -- 2.50.1