multiboot2: Fix lack of argument to panic format string

This commit is contained in:
mintsuki 2023-04-12 09:56:28 +02:00
parent d1cb337894
commit 77591d21b1
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}