diff options
author | Ulf Wendel <uw@php.net> | 2010-10-04 13:36:23 +0000 |
---|---|---|
committer | Ulf Wendel <uw@php.net> | 2010-10-04 13:36:23 +0000 |
commit | 5aca10ee13d9bedae4d656ba5a67b57757fa716b (patch) | |
tree | 8142a542e01958cc771f12374a4e401fe3314d6d /ext/mysqli/mysqli.c | |
parent | 159ed311cc751eb6fc34ed759dbd9adfc07a85a0 (diff) | |
download | php-git-5aca10ee13d9bedae4d656ba5a67b57757fa716b.tar.gz |
Trying to fix compiler warnings (on Windows).
Diffstat (limited to 'ext/mysqli/mysqli.c')
-rw-r--r-- | ext/mysqli/mysqli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index e474776fcc..4b0e916b47 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -893,7 +893,7 @@ PHP_RSHUTDOWN_FUNCTION(mysqli) if (MyG(error_msg)) { efree(MyG(error_msg)); } -#ifdef A0 && MYSQLI_USE_MYSQLND +#if defined(A0) && MYSQLI_USE_MYSQLND /* psession is being called when the connection is freed - explicitly or implicitly */ zend_hash_apply(&EG(persistent_list), (apply_func_t) php_mysqli_persistent_helper_once TSRMLS_CC); #endif |