diff options
author | Lennart Poettering <lennart@poettering.net> | 2024-01-12 15:37:43 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2024-01-12 16:03:12 +0100 |
commit | 1d748d7c99887a064516315d8dbe4b07be057616 (patch) | |
tree | 0e105acd7e24e6f279f858d60848f654661db81a /src/vmspawn/vmspawn.c | |
parent | vmspawn: make sure are fine with ovmf metadata extensions (diff) | |
download | systemd-1d748d7c99887a064516315d8dbe4b07be057616.tar.xz systemd-1d748d7c99887a064516315d8dbe4b07be057616.zip |
vmspawn: fix empty lines before section titles in --help text
Always put an empty line before section titles (one was missing so far)
Diffstat (limited to 'src/vmspawn/vmspawn.c')
-rw-r--r-- | src/vmspawn/vmspawn.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vmspawn/vmspawn.c b/src/vmspawn/vmspawn.c index 4ccda8bae8..a278410636 100644 --- a/src/vmspawn/vmspawn.c +++ b/src/vmspawn/vmspawn.c @@ -69,11 +69,11 @@ static int help(void) { "%5$sSpawn a command or OS in a virtual machine.%6$s\n\n" " -h --help Show this help\n" " --version Print version string\n" - " --no-pager Do not pipe output into a pager\n\n" - "%3$sImage:%4$s\n" + " --no-pager Do not pipe output into a pager\n" + "\n%3$sImage:%4$s\n" " -i --image=PATH Root file system disk image (or device node) for\n" - " the virtual machine\n\n" - "%3$sHost Configuration:%4$s\n" + " the virtual machine\n" + "\n%3$sHost Configuration:%4$s\n" " --qemu-smp=SMP Configure guest's SMP settings\n" " --qemu-mem=MEM Configure guest's RAM size\n" " --qemu-kvm=BOOL Configure whether to use KVM or not\n" @@ -81,10 +81,10 @@ static int help(void) { " --vsock-cid= Specify the CID to use for the qemu guest's vsock\n" " --qemu-gui Start QEMU in graphical mode\n" " --secure-boot=BOOL Configure whether to search for firmware which\n" - " supports Secure Boot\n\n" - "%3$sSystem Identity:%4$s\n" + " supports Secure Boot\n" + "\n%3$sSystem Identity:%4$s\n" " -M --machine=NAME Set the machine name for the container\n" - "%3$sCredentials:%4$s\n" + "\n%3$sCredentials:%4$s\n" " --set-credential=ID:VALUE\n" " Pass a credential with literal value to container.\n" " --load-credential=ID:PATH\n" |