aboutsummaryrefslogtreecommitdiff
path: root/coreutils/ls.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-08 12:49:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-08 12:49:22 +0000
commit1385899416a4396385ad421ae1f532be7103738a (patch)
treefc4d14a910593d1235318bb36abe5e9f72d2039e /coreutils/ls.c
parent5625415085e68ac5e150f54e685417c866620d76 (diff)
downloadbusybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.gz
busybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.bz2
busybox-w32-1385899416a4396385ad421ae1f532be7103738a.zip
attempt to regularize atoi mess.
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r--coreutils/ls.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c
index 8ba4ab758..f34e83ebe 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -163,8 +163,8 @@ static int list_single(struct dnode *);
163static unsigned int all_fmt; 163static unsigned int all_fmt;
164 164
165#ifdef CONFIG_FEATURE_AUTOWIDTH 165#ifdef CONFIG_FEATURE_AUTOWIDTH
166static int terminal_width = TERMINAL_WIDTH; 166static unsigned terminal_width = TERMINAL_WIDTH;
167static unsigned short tabstops = COLUMN_GAP; 167static unsigned tabstops = COLUMN_GAP;
168#else 168#else
169#define tabstops COLUMN_GAP 169#define tabstops COLUMN_GAP
170#define terminal_width TERMINAL_WIDTH 170#define terminal_width TERMINAL_WIDTH
@@ -915,10 +915,10 @@ int ls_main(int argc, char **argv)
915#endif 915#endif
916 ); 916 );
917 if (tabstops_str) { 917 if (tabstops_str) {
918 tabstops = atoi(tabstops_str); 918 tabstops = xatou(tabstops_str);
919 } 919 }
920 if (terminal_width_str) { 920 if (terminal_width_str) {
921 terminal_width = atoi(terminal_width_str); 921 terminal_width = xatou(terminal_width_str);
922 } 922 }
923#else 923#else
924 opt = getopt32(argc, argv, ls_options 924 opt = getopt32(argc, argv, ls_options