From: Michal Privoznik Date: Thu, 24 Nov 2022 07:50:41 +0000 (+0100) Subject: virsh: Format -V output properly X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5eae54402222682f044107383c471a8d71f5d05e;p=libvirt.git 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 --- 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");