From: Joe Orton Date: Mon, 28 Feb 2005 13:30:50 +0000 (+0000) Subject: Fix type mismatch. X-Git-Tag: RELEASE_0_3~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc1c0c2e128ccaf24b0f7200fe04d5d7fe7b23fa;p=php Fix type mismatch. --- 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)) {