aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-10-02 18:45:09 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-10-02 18:45:09 +0200
commitebedb9478d0d91d8aecf28531907e3a277450d0d (patch)
treea431061884cf80c152a2390ef79e60b6009c7cff /shell/ash.c
parentdf303ae11731b07f63b7034a7c141931d7a6fcbb (diff)
downloadbusybox-ebedb9478d0d91d8aecf28531907e3a277450d0d.tar.gz
sh: do not print empty line at the end of "help" output
It's pointless. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 421639e8b..f0dd70e6b 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -12848,7 +12848,7 @@ helpcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
}
}
# endif
- out1fmt("\n\n");
+ newline_and_flush(stdout);
return EXIT_SUCCESS;
}
#endif