From 872b3fe268b07ca92c2fcaeb408ba7fdab338ef4 Mon Sep 17 00:00:00 2001 From: Giorgos Keramidas Date: Thu, 29 Aug 2002 14:29:09 +0000 Subject: [PATCH] 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 136012d2f529..c6f15d3f7438 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)