From: Denys Vlasenko Date: Mon, 25 May 2015 12:30:52 +0000 (+0200) Subject: Print one less newline at the end of bb_show_usage() X-Git-Tag: 1_24_0~113 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7f4a49a96c4e6626f01a09a801d79c591ad0b1db;p=oweals%2Fbusybox.git Print one less newline at the end of bb_show_usage() Signed-off-by: Denys Vlasenko --- diff --git a/libbb/appletlib.c b/libbb/appletlib.c index ba3d6e7a0..46849e4f0 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -130,7 +130,7 @@ void FAST_FUNC bb_show_usage(void) full_write2_str(applet_name); full_write2_str(" "); full_write2_str(p); - full_write2_str("\n\n"); + full_write2_str("\n"); } if (ENABLE_FEATURE_CLEAN_UP) dealloc_usage_messages((char*)usage_string);