Skip to content

Commit 155ec06

Browse files
Fix panic handler
1 parent 2d78746 commit 155ec06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/real/stage_2/src/panic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use shared::utils;
44

55
#[panic_handler]
66
pub fn panic(info: &PanicInfo) -> ! {
7-
println!("[Panic]");
7+
println!("[Panic] {}", info);
88

99
loop {
1010
utils::hlt()

0 commit comments

Comments
 (0)