Buglet: 'tabstops' is unused if BB_FEATURE_AUTOWIDTH is not defined.
This commit is contained in:
parent
f2cc2762bb
commit
9b300d0b1f
@ -735,13 +735,12 @@ extern int ls_main(int argc, char **argv)
|
|||||||
time_fmt= TIME_MOD;
|
time_fmt= TIME_MOD;
|
||||||
#endif
|
#endif
|
||||||
#ifdef BB_FEATURE_AUTOWIDTH
|
#ifdef BB_FEATURE_AUTOWIDTH
|
||||||
ioctl(fileno(stdout), TIOCGWINSZ, &win);
|
ioctl(fileno(stdout), TIOCGWINSZ, &win);
|
||||||
if (win.ws_row > 4)
|
if (win.ws_row > 4)
|
||||||
column_width = win.ws_row - 2;
|
column_width = win.ws_row - 2;
|
||||||
if (win.ws_col > 0)
|
if (win.ws_col > 0)
|
||||||
terminal_width = win.ws_col - 1;
|
terminal_width = win.ws_col - 1;
|
||||||
#endif
|
#endif
|
||||||
tabstops = 8;
|
|
||||||
nfiles=0;
|
nfiles=0;
|
||||||
|
|
||||||
/* process options */
|
/* process options */
|
||||||
|
11
ls.c
11
ls.c
@ -735,13 +735,12 @@ extern int ls_main(int argc, char **argv)
|
|||||||
time_fmt= TIME_MOD;
|
time_fmt= TIME_MOD;
|
||||||
#endif
|
#endif
|
||||||
#ifdef BB_FEATURE_AUTOWIDTH
|
#ifdef BB_FEATURE_AUTOWIDTH
|
||||||
ioctl(fileno(stdout), TIOCGWINSZ, &win);
|
ioctl(fileno(stdout), TIOCGWINSZ, &win);
|
||||||
if (win.ws_row > 4)
|
if (win.ws_row > 4)
|
||||||
column_width = win.ws_row - 2;
|
column_width = win.ws_row - 2;
|
||||||
if (win.ws_col > 0)
|
if (win.ws_col > 0)
|
||||||
terminal_width = win.ws_col - 1;
|
terminal_width = win.ws_col - 1;
|
||||||
#endif
|
#endif
|
||||||
tabstops = 8;
|
|
||||||
nfiles=0;
|
nfiles=0;
|
||||||
|
|
||||||
/* process options */
|
/* process options */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user