diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-24 13:42:24 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-24 13:42:24 +0000 |
commit | 4240408b700d303f5f9a78e1ef41325a9547cd2e (patch) | |
tree | bc38059f2523da59a12f107ea5d3499294cb914b /libbb/appletlib.c | |
parent | a9acbe6caddc59e7e25f4e469322e5c210e17775 (diff) | |
download | busybox-w32-4240408b700d303f5f9a78e1ef41325a9547cd2e.tar.gz busybox-w32-4240408b700d303f5f9a78e1ef41325a9547cd2e.tar.bz2 busybox-w32-4240408b700d303f5f9a78e1ef41325a9547cd2e.zip |
trim help text a bit
Diffstat (limited to 'libbb/appletlib.c')
-rw-r--r-- | libbb/appletlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 | } |