summaryrefslogtreecommitdiffstats
path: root/src/boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot')
-rw-r--r--src/boot/bless-boot.c11
-rw-r--r--src/boot/boot-check-no-failures.c11
-rw-r--r--src/boot/bootctl.c13
3 files changed, 17 insertions, 18 deletions
diff --git a/src/boot/bless-boot.c b/src/boot/bless-boot.c
index cd34f88bb9..bd6f64915d 100644
--- a/src/boot/bless-boot.c
+++ b/src/boot/bless-boot.c
@@ -42,12 +42,11 @@ static int help(int argc, char *argv[], void *userdata) {
" -h --help Show this help\n"
" --version Print version\n"
" --path=PATH Path to the $BOOT partition (may be used multiple times)\n"
- "\nSee the %s for details.\n"
- , program_invocation_short_name
- , ansi_highlight()
- , ansi_normal()
- , link
- );
+ "\nSee the %s for details.\n",
+ program_invocation_short_name,
+ ansi_highlight(),
+ ansi_normal(),
+ link);
return 0;
}
diff --git a/src/boot/boot-check-no-failures.c b/src/boot/boot-check-no-failures.c
index 92f3cd4ed0..cb4f758cb4 100644
--- a/src/boot/boot-check-no-failures.c
+++ b/src/boot/boot-check-no-failures.c
@@ -27,12 +27,11 @@ static int help(void) {
"\n%sVerify system operational state.%s\n\n"
" -h --help Show this help\n"
" --version Print version\n"
- "\nSee the %s for details.\n"
- , program_invocation_short_name
- , ansi_highlight()
- , ansi_normal()
- , link
- );
+ "\nSee the %s for details.\n",
+ program_invocation_short_name,
+ ansi_highlight(),
+ ansi_normal(),
+ link);
return 0;
}
diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c
index e7e8f5d94f..8d2be21dc5 100644
--- a/src/boot/bootctl.c
+++ b/src/boot/bootctl.c
@@ -1043,12 +1043,13 @@ static int help(int argc, char *argv[], void *userdata) {
" --no-pager Do not pipe output into a pager\n"
" --graceful Don't fail when the ESP cannot be found or EFI\n"
" variables cannot be written\n"
- "\nSee the %2$s for details.\n"
- , program_invocation_short_name
- , link
- , ansi_underline(), ansi_normal()
- , ansi_highlight(), ansi_normal()
- );
+ "\nSee the %2$s for details.\n",
+ program_invocation_short_name,
+ link,
+ ansi_underline(),
+ ansi_normal(),
+ ansi_highlight(),
+ ansi_normal());
return 0;
}