From 52b7a79022db726569ca4fcef2aa10beae3bf053 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 20 Feb 2012 09:49:59 +0200 Subject: [PATCH] kvm tools: Fix "vm setup" help text Program name and directory name were swapped in the help text. Signed-off-by: Pekka Enberg --- tools/kvm/builtin-setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/kvm/builtin-setup.c b/tools/kvm/builtin-setup.c index dd43fed94274..232aa6018985 100644 --- a/tools/kvm/builtin-setup.c +++ b/tools/kvm/builtin-setup.c @@ -48,7 +48,7 @@ void kvm_setup_help(void) { printf("\n%s setup creates a new rootfs under %s.\n" "This can be used later by the '-d' parameter of '%s run'.\n", - kvm__get_dir(), KVM_BINARY_NAME, KVM_BINARY_NAME); + KVM_BINARY_NAME, kvm__get_dir(), KVM_BINARY_NAME); usage_with_options(setup_usage, setup_options); } -- 2.39.5