diff options
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 87131ff1cd..8f70d107ba 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -465,7 +465,7 @@ static void zend_error_va(int type, const char *file, uint lineno, const char *f va_list args; va_start(args, format); - zend_error_cb(E_ERROR, file, lineno, format, args); + zend_error_cb(type, file, lineno, format, args); va_end(args); } |