1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Fix typo in kernel multiboot compliance check.

This commit is contained in:
Jonas 'Sortie' Termansen 2015-02-15 12:55:14 +01:00
parent 0087b43c3b
commit 0806a9dfb1

View file

@ -257,10 +257,8 @@ extern "C" void KernelInit(unsigned long magic, multiboot_info_t* bootinfo)
#endif
if ( !bootinfo )
{
Panic("The bootinfo structure was NULL. Are your bootloader "
"multiboot compliant?");
}
Panic("The bootinfo structure was NULL. Is your bootloader multiboot "
"compliant?");
initrd = 0;
initrdsize = 0;