commit | 7f4a49a96c4e6626f01a09a801d79c591ad0b1db | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Mon May 25 14:30:52 2015 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Mon May 25 14:30:52 2015 +0200 |
tree | eab3c2b29df6530ae8b3a8cded5f1244b5eefa89 | |
parent | 97c6491b4edf4bc9db293533ae0c3a81c4ef07f7 [diff] [blame] |
Print one less newline at the end of bb_show_usage() Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index ba3d6e7..46849e4 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c
@@ -130,7 +130,7 @@ 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);