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 <mprivozn@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
Michal Privoznik 2022-11-24 08:50:41 +01:00
parent 1a9ff7846d
commit 5eae544022

View File

@ -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");