diff options
| author | Masatake YAMATO <yamato@redhat.com> | 2023-10-25 01:41:58 +0900 |
|---|---|---|
| committer | Masatake YAMATO <yamato@redhat.com> | 2023-10-25 01:41:58 +0900 |
| commit | 38b8eac6eb9a372e0a2b9c8f2b4abb816c6f17ee (patch) | |
| tree | 854c01287f9561d4b721dd2d4eff4629808dc79d /misc-utils/lsclocks.c | |
| parent | c2f3f40ecc78ac298118d14a6ec037f854076afe (diff) | |
| download | util-linux-38b8eac6eb9a372e0a2b9c8f2b4abb816c6f17ee.tar.gz | |
Use fputs instead of fprintf if possible
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Diffstat (limited to 'misc-utils/lsclocks.c')
| -rw-r--r-- | misc-utils/lsclocks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc-utils/lsclocks.c b/misc-utils/lsclocks.c index 8bdfd5ed46..aae31e574f 100644 --- a/misc-utils/lsclocks.c +++ b/misc-utils/lsclocks.c @@ -195,7 +195,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(USAGE_SEPARATOR, out); printf(USAGE_HELP_OPTIONS(29)); - fprintf(out, USAGE_COLUMNS); + fputs(USAGE_COLUMNS, out); for (i = 0; i < ARRAY_SIZE(infos); i++) fprintf(out, " %16s %-10s%s\n", infos[i].name, |
