From 15d37e709fa809f1b64d3ad81965f3d8200e828a Mon Sep 17 00:00:00 2001 From: "michael@ozlabs.org" Date: Tue, 13 Dec 2011 12:22:58 +1100 Subject: [PATCH] vl.c: Print the actual program name in help output In help() we do what boils down to: printf("%s", "qemu"); This seems to be an artifact of be995c27640a82c7056b6f53d02ec823570114e5 ("removed unused code"), which removed some ifdef'ery that used to print a different name depending on CONFIG_SOFTMMU. Instead print the actual program name, originally from argv[0]. Signed-off-by: Michael Ellerman Signed-off-by: Anthony Liguori --- vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vl.c b/vl.c index 5372a9622a..d51ac2ebfe 100644 --- a/vl.c +++ b/vl.c @@ -1513,7 +1513,7 @@ static void help(int exitcode) "ctrl-alt toggle mouse and keyboard grab\n" "\n" "When using -nographic, press 'ctrl-a h' to get some help.\n", - "qemu", + error_get_progname(), options_help); exit(exitcode); } -- 2.30.2