Fix cargo warnings in userland.

This commit is contained in:
Drew Galbraith 2025-01-26 09:35:23 -08:00
parent d777b8f4ab
commit ab75085f32
3 changed files with 1 additions and 8 deletions

View file

@ -27,6 +27,6 @@ extern "C" fn main() -> z_err_t {
let thread = spawn_irq_thread(ahci_controller.clone());
thread.join();
thread.join().expect("Failed to wait on irq thread.");
0
}