From 6b46a441cd77dd3477613be3cb5e68e7795208d1 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Tue, 25 Oct 2005 03:53:25 +0000 Subject: [PATCH] Fixed compiler warning --- ext/pdo/pdo_stmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.50.1