From: Markus Armbruster Date: Tue, 1 Oct 2013 11:47:22 +0000 (+0200) Subject: vl: Clean up unnecessary boot_order complications X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e3fdc535f25b471e55ac3c8b9f0b504957015bbe;p=qemu.git vl: Clean up unnecessary boot_order complications Messed up in commit 8281abd. Signed-off-by: Markus Armbruster Signed-off-by: Michael Tokarev --- diff --git a/vl.c b/vl.c index 983cdc6eaa..7e1f40880d 100644 --- a/vl.c +++ b/vl.c @@ -2825,7 +2825,7 @@ int main(int argc, char **argv, char **envp) const char *icount_option = NULL; const char *initrd_filename; const char *kernel_filename, *kernel_cmdline; - const char *boot_order = NULL; + const char *boot_order; DisplayState *ds; int cyls, heads, secs, translation; QemuOpts *hda_opts = NULL, *opts, *machine_opts; @@ -4050,9 +4050,7 @@ int main(int argc, char **argv, char **envp) initrd_filename = qemu_opt_get(machine_opts, "initrd"); kernel_cmdline = qemu_opt_get(machine_opts, "append"); - if (!boot_order) { - boot_order = machine->default_boot_order; - } + boot_order = machine->default_boot_order; opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL); if (opts) { char *normal_boot_order;