diff options
author | Antonio Alvarez Feijoo <antonio.feijoo@suse.com> | 2024-03-11 13:34:34 +0100 |
---|---|---|
committer | Antonio Alvarez Feijoo <antonio.feijoo@suse.com> | 2024-03-11 13:34:34 +0100 |
commit | 65064e2ff050fcf0daeefb4c1d03ba77c6b7f79b (patch) | |
tree | 53a99d019bf2f1ed082782759235552e0dc48d7d /src/creds | |
parent | polkit: trivial simplification (diff) | |
download | systemd-65064e2ff050fcf0daeefb4c1d03ba77c6b7f79b.tar.xz systemd-65064e2ff050fcf0daeefb4c1d03ba77c6b7f79b.zip |
tree-wide: drop custom formatting for print() help messages
Follow-up for bc556335b1c568c98688cc1f586b5f753fcddac6
Diffstat (limited to 'src/creds')
-rw-r--r-- | src/creds/creds.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/creds/creds.c b/src/creds/creds.c index 02e317ad2d..4af5f28721 100644 --- a/src/creds/creds.c +++ b/src/creds/creds.c @@ -742,12 +742,13 @@ static int verb_help(int argc, char **argv, void *userdata) { " --user Select user-scoped credential encryption\n" " --uid=UID Select user for scoped credentials\n" " -q --quiet Suppress output for 'has-tpm2' verb\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; } |