diff options
author | Sascha Schumann <sas@php.net> | 2001-02-19 07:50:06 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-02-19 07:50:06 +0000 |
commit | b91b1779a5d0e637540dd4779935230476e83c37 (patch) | |
tree | 106aa52727f78897578fc4ad2bbe7d6089d94ce2 | |
parent | 5db26dd415369dbc97ce1fb2c21ced3141a0da3a (diff) | |
download | php-git-b91b1779a5d0e637540dd4779935230476e83c37.tar.gz |
Fix warning
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |