mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
fixed compiler warning (thx to Marcus Boerger)
This commit is contained in:
parent
d23a557d9d
commit
c139c48a99
1 changed files with 1 additions and 1 deletions
|
@ -1725,7 +1725,7 @@ PHP_FUNCTION(mysqli_stat)
|
|||
}
|
||||
MYSQLI_FETCH_RESOURCE(mysql, MYSQL *, &mysql_link, "mysqli_link");
|
||||
|
||||
if (stat = (char *)mysql_stat(mysql)) {
|
||||
if ((stat = (char *)mysql_stat(mysql))) {
|
||||
RETURN_STRING(stat, 1);
|
||||
}
|
||||
RETURN_FALSE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue