mirror of https://github.com/mirror/busybox.git
Print one less newline at the end of bb_show_usage()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>1_24_stable
parent
97c6491b4e
commit
7f4a49a96c
|
@ -130,7 +130,7 @@ void FAST_FUNC bb_show_usage(void)
|
||||||
full_write2_str(applet_name);
|
full_write2_str(applet_name);
|
||||||
full_write2_str(" ");
|
full_write2_str(" ");
|
||||||
full_write2_str(p);
|
full_write2_str(p);
|
||||||
full_write2_str("\n\n");
|
full_write2_str("\n");
|
||||||
}
|
}
|
||||||
if (ENABLE_FEATURE_CLEAN_UP)
|
if (ENABLE_FEATURE_CLEAN_UP)
|
||||||
dealloc_usage_messages((char*)usage_string);
|
dealloc_usage_messages((char*)usage_string);
|
||||||
|
|
Loading…
Reference in New Issue