CRLF before kernel panic msg

memory-manager
ondra05 2023-01-08 00:45:47 +01:00
parent e777fb2425
commit 2a4cfdca02
No known key found for this signature in database
GPG Key ID: 110E9A6F7CBA6712
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ pub const VERSION: Version = Version {
fn panic(info: &core::panic::PanicInfo) -> ! {
// TODO: Better panic handler
let _ = crate::arch::log(format_args!(
"\x1b[1m\x1b[4m\x1b[38;5;125mKernel Panic\x1b[0m\r\n",
"\r\n\x1b[1m\x1b[4m\x1b[38;5;125mKernel Panic\x1b[0m\r\n",
));
if let Some(loc) = info.location() {