From: Denys Vlasenko Date: Mon, 28 Nov 2016 00:29:28 +0000 (+0100) Subject: Do not print useless empty line after list of applets X-Git-Tag: 1_26_0~20 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7d877fc9312a742b06125927bb1d34bd35398c6c;p=oweals%2Fbusybox.git Do not print useless empty line after list of applets Signed-off-by: Denys Vlasenko --- 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) col += len2; a += len2 - 1; } - full_write2_str("\n\n"); + full_write2_str("\n"); return 0; }