Fix type mismatch.

This commit is contained in:
Joe Orton 2005-02-28 13:30:50 +00:00
parent 99f832a206
commit bc1c0c2e12

View File

@ -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,
&paramtype)) {