Print one less newline at the end of bb_show_usage()
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 25 May 2015 12:30:52 +0000 (14:30 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 25 May 2015 12:30:52 +0000 (14:30 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/appletlib.c

index ba3d6e7a01354a23de505cad013313f4fc997832..46849e4f0179b4163a27928c638a7c0c66545856 100644 (file)
@@ -130,7 +130,7 @@ void FAST_FUNC bb_show_usage(void)
                        full_write2_str(applet_name);
                        full_write2_str(" ");
                        full_write2_str(p);
-                       full_write2_str("\n\n");
+                       full_write2_str("\n");
                }
                if (ENABLE_FEATURE_CLEAN_UP)
                        dealloc_usage_messages((char*)usage_string);