From db2290e47a656c3b88a3d891faa1b51af72fd95a Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 25 Jan 2019 14:00:44 +0100 Subject: [PATCH] Fix import path in code example --- blog/content/second-edition/posts/07-double-faults/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/07-double-faults/index.md b/blog/content/second-edition/posts/07-double-faults/index.md index f430674d..2bfb7ae3 100644 --- a/blog/content/second-edition/posts/07-double-faults/index.md +++ b/blog/content/second-edition/posts/07-double-faults/index.md @@ -383,7 +383,7 @@ Now that we loaded a valid TSS and interrupt stack table, we can set the stack i ```rust // in src/interrupts.rs -use gdt; +use crate::gdt; lazy_static! { static ref IDT: InterruptDescriptorTable = {