From: Sascha Schumann Date: Mon, 19 Feb 2001 07:50:06 +0000 (+0000) Subject: Fix warning X-Git-Tag: php-4.0.5RC1~245 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b91b1779a5d0e637540dd4779935230476e83c37;p=php Fix warning --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 67f2fe732a..25b3a36619 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -236,7 +236,7 @@ PHP_RINIT_FUNCTION(pgsql) PHP_RSHUTDOWN_FUNCTION(pgsql) { - zend_hash_apply(&EG(persistent_list),_rollback_transactions); + zend_hash_apply(&EG(persistent_list), (apply_func_t) _rollback_transactions); return SUCCESS; }