diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-01-01 16:54:30 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-01-01 16:54:30 +0100 |
commit | ff65355b8a44d1d546443f69382459eb2176cb44 (patch) | |
tree | 83034aa3d97d4fce197844b412ecd4bfdf52dc6d | |
parent | 37bdd8f8cb19b674485be1dec6e8ac96d930c87f (diff) |
single-applet build --help had extra \n, remove
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/appletlib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index cd09b620c..c15014a34 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -123,16 +123,16 @@ void FAST_FUNC bb_show_usage(void) { if (ENABLE_SHOW_USAGE) { #ifdef SINGLE_APPLET_STR - /* Imagine that this applet is "true". Dont suck in printf! */ + /* Imagine that this applet is "true". Dont link in printf! */ const char *usage_string = unpack_usage_messages(); if (usage_string) { if (*usage_string == '\b') { - full_write2_str("No help available.\n\n"); + full_write2_str("No help available\n"); } else { full_write2_str("Usage: "SINGLE_APPLET_STR" "); full_write2_str(usage_string); - full_write2_str("\n\n"); + full_write2_str("\n"); } if (ENABLE_FEATURE_CLEAN_UP) dealloc_usage_messages((char*)usage_string); @@ -149,9 +149,9 @@ void FAST_FUNC bb_show_usage(void) ap--; } full_write2_str(bb_banner); - full_write2_str(" multi-call binary.\n"); + full_write2_str(" multi-call binary.\n"); /* common string */ if (*p == '\b') - full_write2_str("\nNo help available.\n\n"); + full_write2_str("\nNo help available\n"); else { full_write2_str("\nUsage: "); full_write2_str(applet_name); |