aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/usage.h2
-rw-r--r--libbb/appletlib.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/usage.h b/include/usage.h
index 3c657a15e..d35f8ae71 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -4325,7 +4325,7 @@
4325 "[-t SECS] [-s SIG] PROG [ARGS]" 4325 "[-t SECS] [-s SIG] PROG [ARGS]"
4326#define timeout_full_usage "\n\n" \ 4326#define timeout_full_usage "\n\n" \
4327 "Runs PROG. Sends SIG to it if it is not gone in SECS seconds.\n" \ 4327 "Runs PROG. Sends SIG to it if it is not gone in SECS seconds.\n" \
4328 "Defaults: SECS: 10, SIG: TERM.\n" \ 4328 "Defaults: SECS: 10, SIG: TERM." \
4329 4329
4330#define top_trivial_usage \ 4330#define top_trivial_usage \
4331 "[-b] [-nCOUNT] [-dSECONDS]" 4331 "[-b] [-nCOUNT] [-dSECONDS]"
diff --git a/libbb/appletlib.c b/libbb/appletlib.c
index 2bab0eba6..13cdb819f 100644
--- a/libbb/appletlib.c
+++ b/libbb/appletlib.c
@@ -111,9 +111,9 @@ void FAST_FUNC bb_show_usage(void)
111 const char *usage_string = p = unpack_usage_messages(); 111 const char *usage_string = p = unpack_usage_messages();
112 112
113 if (*p == '\b') { 113 if (*p == '\b') {
114 full_write2_str("\nNo help available.\n\n"); 114 full_write2_str("No help available.\n\n");
115 } else { 115 } else {
116 full_write2_str("\nUsage: "SINGLE_APPLET_STR" "); 116 full_write2_str("Usage: "SINGLE_APPLET_STR" ");
117 full_write2_str(p); 117 full_write2_str(p);
118 full_write2_str("\n\n"); 118 full_write2_str("\n\n");
119 } 119 }