diff options
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index 3c6d469742..b6ee590a67 100644 --- a/main/main.c +++ b/main/main.c @@ -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 { |