diff options
Diffstat (limited to 'sys-utils/umount.c')
-rw-r--r-- | sys-utils/umount.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys-utils/umount.c b/sys-utils/umount.c index 3a740ae..17e668c 100644 --- a/sys-utils/umount.c +++ b/sys-utils/umount.c @@ -107,8 +107,8 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -N, --namespace <ns> perform umount in another namespace\n"), out); fputs(USAGE_SEPARATOR, out); - printf(USAGE_HELP_OPTIONS(25)); - printf(USAGE_MAN_TAIL("umount(8)")); + fprintf(out, USAGE_HELP_OPTIONS(25)); + fprintf(out, USAGE_MAN_TAIL("umount(8)")); exit(MNT_EX_SUCCESS); } @@ -656,4 +656,3 @@ int main(int argc, char **argv) return (rc < 256) ? rc : 255; } - |