aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-01 19:39:43 +0000
committermarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-01 19:39:43 +0000
commit472f3a626513678c2ffb94ea2eeca7142cfccfa9 (patch)
tree5bbb351cb017a08d7fc0072a24ec2015825cf2ba
parent1cd33beb0749a9a090aabeeb36723ab48019072a (diff)
downloadbusybox-w32-472f3a626513678c2ffb94ea2eeca7142cfccfa9.tar.gz
busybox-w32-472f3a626513678c2ffb94ea2eeca7142cfccfa9.tar.bz2
busybox-w32-472f3a626513678c2ffb94ea2eeca7142cfccfa9.zip
Buglet: 'tabstops' is unused if BB_FEATURE_AUTOWIDTH is not defined.
git-svn-id: svn://busybox.net/trunk/busybox@1736 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/ls.c11
-rw-r--r--ls.c11
2 files changed, 10 insertions, 12 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 */
diff --git a/ls.c b/ls.c
index a5574a52e..42b24456a 100644
--- a/ls.c
+++ b/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 */