We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3439032 commit 7dd50beCopy full SHA for 7dd50be
src/aero_kernel/src/unwind.rs
@@ -161,7 +161,7 @@ pub fn unwind_stack_trace() {
161
log::trace!("{depth:>2}: 0x{rip:016x} - <unknown>");
162
}
163
} else {
164
- log::trace!("{:>2}: 0x{:016x} - <unknown>", depth, rip);
+ log::trace!("{depth:>2}: 0x{rip:016x} - <unknown>");
165
166
167
// RBP has been overflowed...
@@ -186,7 +186,7 @@ use crate::utils::sync::IrqGuard;
186
fn rust_begin_unwind(info: &PanicInfo) -> ! {
187
prepare_panic();
188
189
- let message = info.message().unwrap();
+ let message = info.message();
190
let location = info.location().unwrap();
191
192
// Get the CPU ID where this panic happened and if PANIC_HOOK_READY is false
0 commit comments