aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/ls.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c
index 07e083f5a..e9c2e8643 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -443,12 +443,7 @@ static void showfiles(struct dnode **dn, int nfiles)
443 if (column_width < len) 443 if (column_width < len)
444 column_width= len; 444 column_width= len;
445 } 445 }
446 if (column_width >= 6) 446 ncols = (int)(terminal_width / (column_width + COLUMN_GAP));
447 ncols = (int)(terminal_width / (column_width + COLUMN_GAP));
448 else {
449 ncols = 1;
450 column_width = COLUMN_WIDTH;
451 }
452#else 447#else
453 ncols= TERMINAL_WIDTH; 448 ncols= TERMINAL_WIDTH;
454#endif 449#endif