Fix [-Wextra-tokens] warning in MySQLi extension which breaks build

Didn't double check and this slipped through with my big search and replace
This commit is contained in:
George Peter Banyard 2020-05-18 01:00:39 +02:00
parent 1330359515
commit 7c33644fed

View file

@ -875,7 +875,7 @@ PHP_MSHUTDOWN_FUNCTION(mysqli)
*/
PHP_RINIT_FUNCTION(mysqli)
{
#ifndef MYSQLI_USE_MYSQLND && defined(ZTS)
#if !defined(MYSQLI_USE_MYSQLND) && defined(ZTS)
if (mysql_thread_init()) {
return FAILURE;
}
@ -912,7 +912,7 @@ PHP_RSHUTDOWN_FUNCTION(mysqli)
{
/* check persistent connections, move used to free */
#ifndef MYSQLI_USE_MYSQLND && defined(ZTS)
#if !defined(MYSQLI_USE_MYSQLND) && defined(ZTS)
mysql_thread_end();
#endif
if (MyG(error_msg)) {