diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-28 01:29:28 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-28 01:29:28 +0100 |
commit | 7d877fc9312a742b06125927bb1d34bd35398c6c (patch) | |
tree | e8a2ac0317e69494e8320b519797df95210b77e3 | |
parent | 1d3a04a3a4be8682d4317251fc14e81ad655d58a (diff) | |
download | busybox-w32-7d877fc9312a742b06125927bb1d34bd35398c6c.tar.gz busybox-w32-7d877fc9312a742b06125927bb1d34bd35398c6c.tar.bz2 busybox-w32-7d877fc9312a742b06125927bb1d34bd35398c6c.zip |
Do not print useless empty line after list of applets
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/appletlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index bb7e905db..9425c7bd4 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -777,7 +777,7 @@ static int busybox_main(char **argv) | |||
777 | col += len2; | 777 | col += len2; |
778 | a += len2 - 1; | 778 | a += len2 - 1; |
779 | } | 779 | } |
780 | full_write2_str("\n\n"); | 780 | full_write2_str("\n"); |
781 | return 0; | 781 | return 0; |
782 | } | 782 | } |
783 | 783 | ||