diff options
author | Mark Whitley <markw@lineo.com> | 2001-02-01 19:39:43 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-02-01 19:39:43 +0000 |
commit | 9b300d0b1f73ae796ec1f27e9efed947ff56a9af (patch) | |
tree | 5bbb351cb017a08d7fc0072a24ec2015825cf2ba /coreutils/ls.c | |
parent | f2cc2762bb273fbabe8c2eadeb3b8669550582f0 (diff) | |
download | busybox-w32-9b300d0b1f73ae796ec1f27e9efed947ff56a9af.tar.gz busybox-w32-9b300d0b1f73ae796ec1f27e9efed947ff56a9af.tar.bz2 busybox-w32-9b300d0b1f73ae796ec1f27e9efed947ff56a9af.zip |
Buglet: 'tabstops' is unused if BB_FEATURE_AUTOWIDTH is not defined.
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index a5574a52e..42b24456a 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -735,13 +735,12 @@ extern int ls_main(int argc, char **argv) | |||
735 | time_fmt= TIME_MOD; | 735 | time_fmt= TIME_MOD; |
736 | #endif | 736 | #endif |
737 | #ifdef BB_FEATURE_AUTOWIDTH | 737 | #ifdef BB_FEATURE_AUTOWIDTH |
738 | ioctl(fileno(stdout), TIOCGWINSZ, &win); | 738 | ioctl(fileno(stdout), TIOCGWINSZ, &win); |
739 | if (win.ws_row > 4) | 739 | if (win.ws_row > 4) |
740 | column_width = win.ws_row - 2; | 740 | column_width = win.ws_row - 2; |
741 | if (win.ws_col > 0) | 741 | if (win.ws_col > 0) |
742 | terminal_width = win.ws_col - 1; | 742 | terminal_width = win.ws_col - 1; |
743 | #endif | 743 | #endif |
744 | tabstops = 8; | ||
745 | nfiles=0; | 744 | nfiles=0; |
746 | 745 | ||
747 | /* process options */ | 746 | /* process options */ |