Skip to content

Commit

Permalink
🐛 Fix: fix builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
hanbings committed Jun 26, 2024
1 parent e03886a commit cd48a15
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions canicula-efi/src/config/aarch64.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions canicula-ext4/src/types/data_block.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions canicula-ext4/src/types/data_block_bitmap.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions canicula-ext4/src/types/group_descriptors.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions canicula-ext4/src/types/inode_bitmap.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions canicula-ext4/src/types/inode_table.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

4 changes: 2 additions & 2 deletions canicula-kernel/src/arch/riscv64/panic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ fn panic(info: &PanicInfo) -> ! {
"Panicked at {}:{} {}",
location.file(),
location.line(),
info.message().unwrap()
info.message()
);
} else {
println!("Panicked: {}", info.message().unwrap());
println!("Panicked: {}", info.message());
}

shutdown(true);
Expand Down

0 comments on commit cd48a15

Please sign in to comment.