From a8a075acfee7b31c4da00cf3500b67354339e3b9 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 11 Jan 2017 10:52:24 +0100 Subject: busybox: stop depending on FEATURE_AUTOWIDTH for applet list Many other appletw don't - they unconditionally use get_terminal_wodth(), and here the amount of code saved by FEATURE_AUTOWIDTH=n is tiny. Signed-off-by: Denys Vlasenko --- libbb/appletlib.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libbb/appletlib.c') diff --git a/libbb/appletlib.c b/libbb/appletlib.c index bf6d4762c..7f0d62060 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -748,11 +748,7 @@ static int busybox_main(char **argv) int col; unsigned output_width; help: - output_width = 80; - if (ENABLE_FEATURE_AUTOWIDTH) { - /* Obtain the terminal width */ - output_width = get_terminal_width(2); - } + output_width = get_terminal_width(2); dup2(1, 2); full_write2_str(bb_banner); /* reuse const string */ -- cgit v1.2.3