diff options
author | George Peter Banyard <girgias@php.net> | 2020-05-17 23:10:10 +0200 |
---|---|---|
committer | George Peter Banyard <girgias@php.net> | 2020-05-18 00:37:20 +0200 |
commit | 133035951565fcb869f7d0223db6e73adc7e2aea (patch) | |
tree | 341cbe5480c448fb5c7440c483853225ac494774 /ext/mysqlnd/mysqlnd.h | |
parent | 82afcf4401f4a1d61c6befc76c35da43f85fbfbe (diff) | |
download | php-git-133035951565fcb869f7d0223db6e73adc7e2aea.tar.gz |
Fix [-Wundef] warning in MySQLnd extension
Diffstat (limited to 'ext/mysqlnd/mysqlnd.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd.h b/ext/mysqlnd/mysqlnd.h index b914afed6a..dc153f208e 100644 --- a/ext/mysqlnd/mysqlnd.h +++ b/ext/mysqlnd/mysqlnd.h @@ -36,7 +36,7 @@ on production systems, if of course measured performance degradation is not minimal. */ -#if A0 && PHP_DEBUG +#if defined(A0) && PHP_DEBUG #define MYSQLND_DO_WIRE_CHECK_BEFORE_COMMAND 1 #endif |