multiboot2: Fix lack of argument to panic format string
This commit is contained in:
parent
d1cb337894
commit
77591d21b1
|
@ -192,7 +192,7 @@ noreturn void multiboot2_load(char *config, char* cmdline) {
|
|||
has_reloc_header = true;
|
||||
break;
|
||||
|
||||
default: panic(true, "multiboot2: Unknown header tag type: %u\n");
|
||||
default: panic(true, "multiboot2: Unknown header tag type: %u\n", tag->type);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue