[panic.serial] Line up the header with the registers

The serial panic handler was outputting a header underlined by =
characters, but its width did not match that of the register output.
This commit is contained in:
Justin C. Miller
2021-12-30 18:53:48 -08:00
parent 13b39ae730
commit 1fb47318c0

View File

@@ -11,7 +11,7 @@ print_header(serial_port &out, const char *message)
{ {
out.write("\n\n\e[5;31m PANIC:\e[0;1;31m "); out.write("\n\n\e[5;31m PANIC:\e[0;1;31m ");
out.write(message); out.write(message);
out.write("\n \e[0;31m=====================================================================\n"); out.write("\n \e[0;31m===================================================================================\n");
} }
void void