From f56e4d24e35cfcfc27c5e0c079a5a3438c81bfa0 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 14 Sep 2019 19:08:05 +0200 Subject: [PATCH] Add missing import --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 86419d81..84d42343 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,6 +16,7 @@ entry_point!(kernel_main); fn kernel_main(boot_info: &'static BootInfo) -> ! { use blog_os::allocator; use blog_os::memory::{self, BootInfoFrameAllocator}; + use x86_64::VirtAddr; println!("Hello World{}", "!"); blog_os::init();