From: Ilia Alshanetsky Date: Tue, 25 Oct 2005 03:53:25 +0000 (+0000) Subject: Fixed compiler warning X-Git-Tag: php-5.1.0RC4~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b46a441cd77dd3477613be3cb5e68e7795208d1;p=php Fixed compiler warning --- diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c index 6be0029c6e..ff9b273e42 100755 --- a/ext/pdo/pdo_stmt.c +++ b/ext/pdo/pdo_stmt.c @@ -556,7 +556,7 @@ static int do_fetch_common(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, zval_dtor(param->parameter); /* set new value */ - fetch_value(stmt, param->parameter, param->paramno, ¶m->param_type TSRMLS_CC); + fetch_value(stmt, param->parameter, param->paramno, (int *)¶m->param_type TSRMLS_CC); /* TODO: some smart thing that avoids duplicating the value in the * general loop below. For now, if you're binding output columns,