diff options
author | Denis Vlasenko | 2008-11-24 13:42:24 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-11-24 13:42:24 +0000 |
commit | 4240408b700d303f5f9a78e1ef41325a9547cd2e (patch) | |
tree | bc38059f2523da59a12f107ea5d3499294cb914b /libbb | |
parent | a9acbe6caddc59e7e25f4e469322e5c210e17775 (diff) | |
download | busybox-4240408b700d303f5f9a78e1ef41325a9547cd2e.zip busybox-4240408b700d303f5f9a78e1ef41325a9547cd2e.tar.gz |
trim help text a bit
Diffstat (limited to 'libbb')
-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 2bab0eb..13cdb81 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -111,9 +111,9 @@ void FAST_FUNC bb_show_usage(void) const char *usage_string = p = unpack_usage_messages(); if (*p == '\b') { - full_write2_str("\nNo help available.\n\n"); + full_write2_str("No help available.\n\n"); } else { - full_write2_str("\nUsage: "SINGLE_APPLET_STR" "); + full_write2_str("Usage: "SINGLE_APPLET_STR" "); full_write2_str(p); full_write2_str("\n\n"); } |