Fix import path in code example

This commit is contained in:
Philipp Oppermann
2019-01-25 14:00:44 +01:00
parent 441d2df46f
commit db2290e47a

View File

@@ -383,7 +383,7 @@ Now that we loaded a valid TSS and interrupt stack table, we can set the stack i
```rust ```rust
// in src/interrupts.rs // in src/interrupts.rs
use gdt; use crate::gdt;
lazy_static! { lazy_static! {
static ref IDT: InterruptDescriptorTable = { static ref IDT: InterruptDescriptorTable = {