diff options
Diffstat (limited to 'arch/x86/machine/boot.c')
-rw-r--r-- | arch/x86/machine/boot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/machine/boot.c b/arch/x86/machine/boot.c index 2ab1c6d5..36eba21e 100644 --- a/arch/x86/machine/boot.c +++ b/arch/x86/machine/boot.c @@ -412,10 +412,10 @@ boot_save_data(void) { boot_mbi.flags = boot_raw_mbi.flags; - if (boot_mbi.flags & MULTIBOOT_LOADER_CMDLINE) + if (boot_mbi.flags & MULTIBOOT_LOADER_CMDLINE) { boot_mbi.cmdline = boot_save_memory(boot_raw_mbi.cmdline, boot_raw_mbi.unused0); - else { + } else { boot_mbi.cmdline = NULL; } |