Log: make LogLevel the first parameter

Prepare for templated functions.
This commit is contained in:
Max Kellermann
2019-05-22 18:38:25 +02:00
parent 585a745484
commit e0d5d88104
9 changed files with 29 additions and 29 deletions

View File

@@ -54,7 +54,7 @@ FormatFatalError(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
LogFormatV(fatal_error_domain, LogLevel::ERROR, fmt, ap);
LogFormatV(LogLevel::ERROR, fatal_error_domain, fmt, ap);
va_end(ap);
Abort();