mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
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:
parent
1330359515
commit
7c33644fed
1 changed files with 2 additions and 2 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue