diff --git a/blog/content/second-edition/posts/08-hardware-interrupts/index.md b/blog/content/second-edition/posts/08-hardware-interrupts/index.md index db4b62a1..7155dbec 100644 --- a/blog/content/second-edition/posts/08-hardware-interrupts/index.md +++ b/blog/content/second-edition/posts/08-hardware-interrupts/index.md @@ -396,7 +396,7 @@ We can also use `hlt_loop` in our double fault exception handler as well: ```rust // in src/interrupts.rs -use hlt_loop; // new +use crate::hlt_loop; // new extern "x86-interrupt" fn double_fault_handler( stack_frame: &mut ExceptionStackFrame,