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
1 changed files with 2 additions and 4 deletions

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;