diff options
| author | Masatake YAMATO <yamato@redhat.com> | 2023-10-25 02:21:45 +0900 |
|---|---|---|
| committer | Masatake YAMATO <yamato@redhat.com> | 2023-10-25 02:21:45 +0900 |
| commit | bad4c729483ab31bb1cadc541817c139f41fb8aa (patch) | |
| tree | 402b225cf473669053486d1edfcc2bab7806785e /sys-utils/fsfreeze.c | |
| parent | 38b8eac6eb9a372e0a2b9c8f2b4abb816c6f17ee (diff) | |
| download | util-linux-bad4c729483ab31bb1cadc541817c139f41fb8aa.tar.gz | |
Make the ways of using output stream consistent in usage()
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Diffstat (limited to 'sys-utils/fsfreeze.c')
| -rw-r--r-- | sys-utils/fsfreeze.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys-utils/fsfreeze.c b/sys-utils/fsfreeze.c index cd2bb4790f..d2d9402ee5 100644 --- a/sys-utils/fsfreeze.c +++ b/sys-utils/fsfreeze.c @@ -47,8 +47,8 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -f, --freeze freeze the filesystem\n"), out); fputs(_(" -u, --unfreeze unfreeze the filesystem\n"), out); fputs(USAGE_SEPARATOR, out); - printf(USAGE_HELP_OPTIONS(19)); - printf(USAGE_MAN_TAIL("fsfreeze(8)")); + fprintf(out, USAGE_HELP_OPTIONS(19)); + fprintf(out, USAGE_MAN_TAIL("fsfreeze(8)")); exit(EXIT_SUCCESS); } @@ -147,4 +147,3 @@ done: close(fd); return rc; } - |
