From 2da6cc170908a2d016233b6cdaa5a5dceddda142 Mon Sep 17 00:00:00 2001 From: keramida Date: Thu, 29 Aug 2002 14:29:09 +0000 Subject: Fix a warning of "possibly used before initialisation". Reviewed by: tjr --- bin/ls/print.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/ls/print.c b/bin/ls/print.c index 136012d..c6f15d3 100644 --- a/bin/ls/print.c +++ b/bin/ls/print.c @@ -306,8 +306,7 @@ printcol(DISPLAY *dp) if (dp->list->fts_level != FTS_ROOTLEVEL && (f_longform || f_size)) (void)printf("total %lu\n", howmany(dp->btotal, blocksize)); - if (f_sortacross) - base = 0; + base = 0; for (row = 0; row < numrows; ++row) { endcol = colwidth; if (!f_sortacross) -- cgit v1.1