From 6671501cfa2c49f201d3928d65dd538d3ef5c9cc Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Fri, 6 Mar 2020 12:03:50 +0100 Subject: [PATCH] unshare: fix help message indentation A few lines of the help message were unaligned in the output because of mixes use of tabs and space. This removes all tabs and replaces them with spaces. Signed-off-by: Adrian Reber --- sys-utils/unshare.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-utils/unshare.c b/sys-utils/unshare.c index 8d33f22735..9b0a122a78 100644 --- a/sys-utils/unshare.c +++ b/sys-utils/unshare.c @@ -280,10 +280,10 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" --setgroups allow|deny control the setgroups syscall in user namespaces\n"), out); fputs(_(" --keep-caps retain capabilities granted in user namespaces\n"), out); fputs(USAGE_SEPARATOR, out); - fputs(_(" -R, --root= run the command with root directory set to \n"), out); - fputs(_(" -w, --wd= change working directory to \n"), out); - fputs(_(" -S, --setuid set uid in entered namespace\n"), out); - fputs(_(" -G, --setgid set gid in entered namespace\n"), out); + fputs(_(" -R, --root= run the command with root directory set to \n"), out); + fputs(_(" -w, --wd= change working directory to \n"), out); + fputs(_(" -S, --setuid set uid in entered namespace\n"), out); + fputs(_(" -G, --setgid set gid in entered namespace\n"), out); fputs(USAGE_SEPARATOR, out); printf(USAGE_HELP_OPTIONS(27)); -- 2.47.3