diff options
Diffstat (limited to 'Kernel/i386.cpp')
-rw-r--r-- | Kernel/i386.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/i386.cpp b/Kernel/i386.cpp index 22caeb0c43..fd1bb7564e 100644 --- a/Kernel/i386.cpp +++ b/Kernel/i386.cpp @@ -318,7 +318,7 @@ void gdt_init() s_gdt_freelist = new Vector<word, KmallocEternalAllocator>(); s_gdt_freelist->ensureCapacity(256); for (size_t i = s_gdtLength; i < 256; ++i) - s_gdt_freelist->uncheckedAppend(i * 8); + s_gdt_freelist->unchecked_append(i * 8); s_gdtLength = 256; s_gdtr.address = s_gdt; |