We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af26b31 commit 3004553Copy full SHA for 3004553
kernel/src/libs/mod.rs
@@ -1,8 +1,8 @@
1
+pub mod acpi;
2
pub mod bitmap;
3
pub mod bmp;
4
pub mod initrd;
5
pub mod logger;
6
pub mod msr;
7
pub mod shell;
8
pub mod time;
-pub mod acpi;
kernel/src/panic.rs
@@ -180,7 +180,7 @@ pub fn panic(info: &PanicInfo) -> ! {
180
let mut console = PanicConsole::new(framebuffer);
181
console.clear(bg);
182
183
- let _ = write!(
+ let _ = writeln!(
184
console,
185
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
186
);
0 commit comments