Fix formatting on panic

This commit is contained in:
Drew Galbraith 2023-05-30 23:52:50 -07:00
parent 69c73a9386
commit 09b8136ef9
1 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,8 @@ void panic(const char* fmt, ...) {
va_start(arg, fmt);
dbg_internal(fmt, arg);
va_end(arg);
dbgln("\nPANIC");
dbgputchar('\n');
dbgln("PANIC");
while (1)
;
}