Skip to content

Commit 69ea12b

Browse files
committed
Merge remote-tracking branch 'remotes/armbru/tags/pull-misc-2021-07-27' into staging
Miscellaneous patches for 2021-07-27 # gpg: Signature made Tue 27 Jul 2021 16:19:35 BST # gpg: using RSA key 354BC8B3D7EB2A6B68674E5F3870B400EB918653 # gpg: issuer "[email protected]" # gpg: Good signature from "Markus Armbruster <[email protected]>" [full] # gpg: aka "Markus Armbruster <[email protected]>" [full] # Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653 * remotes/armbru/tags/pull-misc-2021-07-27: vl: Don't continue after -smp help. Signed-off-by: Peter Maydell <[email protected]>
2 parents f2da205 + 3e61a13 commit 69ea12b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

softmmu/vl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1545,7 +1545,7 @@ machine_parse_property_opt(QemuOptsList *opts_list, const char *propname,
15451545
prop = keyval_parse(arg, opts_list->implied_opt_name, &help, errp);
15461546
if (help) {
15471547
qemu_opts_print_help(opts_list, true);
1548-
return;
1548+
exit(0);
15491549
}
15501550
opts = qdict_new();
15511551
qdict_put(opts, propname, prop);

0 commit comments

Comments
 (0)