Use type instead of constant

This commit is contained in:
Marcus Boerger 2003-09-11 10:26:47 +00:00
parent c5b69dcb14
commit 6f78de02f0
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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);
}