diff --git a/kernel/src/main.rs b/kernel/src/main.rs index 9c2ce591..89ccbf92 100644 --- a/kernel/src/main.rs +++ b/kernel/src/main.rs @@ -5,7 +5,7 @@ use core::panic::PanicInfo; bootloader_api::entry_point!(kernel_main); -fn kernel_main(bootinfo: &'static mut bootloader_api::BootInfo) -> ! { +fn kernel_main(_bootinfo: &'static mut bootloader_api::BootInfo) -> ! { loop {} }