mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
- Warning fixes by Steph
This commit is contained in:
parent
84fc80064b
commit
5a69b29082
17 changed files with 36 additions and 36 deletions
|
@ -659,7 +659,7 @@ static void php_error_cb(int type, const char *error_filename, const uint error_
|
|||
* be NULL if PG(last_error_message) is not NULL */
|
||||
if (strcmp(PG(last_error_message), buffer)
|
||||
|| (!PG(ignore_repeated_source)
|
||||
&& ((PG(last_error_lineno) != error_lineno)
|
||||
&& ((PG(last_error_lineno) != (int)error_lineno)
|
||||
|| strcmp(PG(last_error_file), error_filename)))) {
|
||||
display = 1;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue