diff options
author | keramida <keramida@FreeBSD.org> | 2002-08-29 14:29:09 +0000 |
---|---|---|
committer | keramida <keramida@FreeBSD.org> | 2002-08-29 14:29:09 +0000 |
commit | 2da6cc170908a2d016233b6cdaa5a5dceddda142 (patch) | |
tree | eff3bc7c1261dde1a47311959a48286417cc623b /bin | |
parent | 0eae474cc23cbde9dc1b97e238d1c8c70a1c927a (diff) | |
download | FreeBSD-src-2da6cc170908a2d016233b6cdaa5a5dceddda142.zip FreeBSD-src-2da6cc170908a2d016233b6cdaa5a5dceddda142.tar.gz |
Fix a warning of "possibly used before initialisation".
Reviewed by: tjr
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ls/print.c | 3 |
1 files changed, 1 insertions, 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) |