1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-06 09:17:25 +00:00

Add missing "else", without whom the prev. commit is a null change.

Fix a 2nd level indentation style bug.
This commit is contained in:
Tim Vanderhoek 1998-08-02 22:47:11 +00:00
parent 27aa2e8958
commit bb2b4fafae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38026

View File

@ -45,7 +45,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)ls.c 8.5 (Berkeley) 4/2/94";
#else
static const char rcsid[] =
"$Id: ls.c,v 1.21 1998/04/24 20:15:42 des Exp $";
"$Id: ls.c,v 1.22 1998/07/29 00:46:09 hoek Exp $";
#endif
#endif /* not lint */
@ -460,10 +460,9 @@ display(p, list)
maxblock = makenines(maxblock);
maxnlink = makenines(maxnlink);
maxsize = makenines(maxsize);
}
if (initmax == NULL || *initmax == '\0')
} else if (initmax == NULL || *initmax == '\0')
maxblock = maxinode = maxlen = maxnlink =
maxuser = maxgroup = maxflags = maxsize = 0;
maxuser = maxgroup = maxflags = maxsize = 0;
bcfile = 0;
flags = NULL;
for (cur = list, entries = 0; cur; cur = cur->fts_link) {