diff options
Diffstat (limited to 'Kernel/kassert.h')
-rw-r--r-- | Kernel/kassert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/kassert.h b/Kernel/kassert.h index 621aa9f4ec..5196f14df7 100644 --- a/Kernel/kassert.h +++ b/Kernel/kassert.h @@ -1,6 +1,6 @@ #pragma once -#include "VGA.h" +#include "kprintf.h" #define CRASH() do { asm volatile("ud2"); } while(0) #define ASSERT(x) do { if (!(x)) { kprintf("ASSERTION FAILED: " #x "\n%s:%u in %s\n", __FILE__, __LINE__, __PRETTY_FUNCTION__); CRASH(); } } while(0) |