]> granicus.if.org Git - php/commitdiff
Fix type mismatch.
authorJoe Orton <jorton@php.net>
Mon, 28 Feb 2005 13:30:50 +0000 (13:30 +0000)
committerJoe Orton <jorton@php.net>
Mon, 28 Feb 2005 13:30:50 +0000 (13:30 +0000)
ext/pdo/pdo_dbh.c

index 61979b15f63cc913ef28b764997a82052fa37239..67433c768a3658dc8593307fe9980e0cefbe9c2a 100755 (executable)
@@ -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)) {