From 8c04117f6aaf93bc5beebfebcd218a0314ee9fad Mon Sep 17 00:00:00 2001 From: Sergiusz Bazanski Date: Thu, 25 Aug 2011 20:00:52 +0200 Subject: [PATCH] Kernel: Typo. --- Kernel/src/Tier0/physical_alloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kernel/src/Tier0/physical_alloc.c b/Kernel/src/Tier0/physical_alloc.c index 12b942c..336718b 100755 --- a/Kernel/src/Tier0/physical_alloc.c +++ b/Kernel/src/Tier0/physical_alloc.c @@ -36,19 +36,19 @@ void physmem_init(u64 MemorySize) u64 physmem_allocate_page(void) { - PANIC("Not implemeneted!"); + PANIC("Not implemented!"); return 0; } u64 physmem_page_to_physical(u64 Page) { - PANIC("Not implemeneted!"); + PANIC("Not implemented!"); return 0; } u64 physmem_physical_to_page(u64 Physical) { - PANIC("Not implemeneted!"); + PANIC("Not implemented!"); return 0; }