From 5eae54402222682f044107383c471a8d71f5d05e Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Thu, 24 Nov 2022 08:50:41 +0100 Subject: [PATCH] virsh: Format -V output properly When displaying long version (virsh -V), the 'Virtuozzo Storage' substring lacks leading space and thus produces awful output. Signed-off-by: Michal Privoznik Reviewed-by: Jiri Denemark --- tools/virsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virsh.c b/tools/virsh.c index 5696941550..ad11f4a9ac 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -586,7 +586,7 @@ virshShowVersion(vshControl *ctl G_GNUC_UNUSED) vshPrint(ctl, " ZFS"); #endif #ifdef WITH_STORAGE_VSTORAGE - vshPrint(ctl, "Virtuozzo Storage"); + vshPrint(ctl, " Virtuozzo Storage"); #endif vshPrint(ctl, "\n"); -- 2.39.5