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:
parent
0087b43c3b
commit
0806a9dfb1
1 changed files with 2 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue