diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-05-25 14:30:52 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-05-25 14:30:52 +0200 |
commit | 7f4a49a96c4e6626f01a09a801d79c591ad0b1db (patch) | |
tree | eab3c2b29df6530ae8b3a8cded5f1244b5eefa89 /libbb/appletlib.c | |
parent | 97c6491b4edf4bc9db293533ae0c3a81c4ef07f7 (diff) | |
download | busybox-w32-7f4a49a96c4e6626f01a09a801d79c591ad0b1db.tar.gz busybox-w32-7f4a49a96c4e6626f01a09a801d79c591ad0b1db.tar.bz2 busybox-w32-7f4a49a96c4e6626f01a09a801d79c591ad0b1db.zip |
Print one less newline at the end of bb_show_usage()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/appletlib.c')
-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 ba3d6e7a0..46849e4f0 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -130,7 +130,7 @@ void FAST_FUNC bb_show_usage(void) | |||
130 | full_write2_str(applet_name); | 130 | full_write2_str(applet_name); |
131 | full_write2_str(" "); | 131 | full_write2_str(" "); |
132 | full_write2_str(p); | 132 | full_write2_str(p); |
133 | full_write2_str("\n\n"); | 133 | full_write2_str("\n"); |
134 | } | 134 | } |
135 | if (ENABLE_FEATURE_CLEAN_UP) | 135 | if (ENABLE_FEATURE_CLEAN_UP) |
136 | dealloc_usage_messages((char*)usage_string); | 136 | dealloc_usage_messages((char*)usage_string); |