Don't print a "," after the last superblock.

Submitted by:	adrian
This commit is contained in:
Bill Fumerola 1999-08-21 22:07:27 +00:00
parent 775ef6178d
commit 5682c39f91
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50134

View File

@ -36,7 +36,7 @@
static char sccsid[] = "@(#)mkfs.c 8.11 (Berkeley) 5/3/95";
#endif
static const char rcsid[] =
"$Id: mkfs.c,v 1.26 1998/08/27 07:38:33 dfr Exp $";
"$Id: mkfs.c,v 1.27 1999/02/09 17:19:18 dillon Exp $";
#endif /* not lint */
#include <err.h>
@ -686,8 +686,9 @@ mkfs(pp, fsys, fi, fo)
initcg(cylno, utime);
if (mfs)
continue;
j = sprintf(tmpbuf, " %ld,",
fsbtodb(&sblock, cgsblock(&sblock, cylno)));
j = sprintf(tmpbuf, " %ld%s",
fsbtodb(&sblock, cgsblock(&sblock, cylno)),
cylno < (sblock.fs_ncg-1) ? "," : "" );
if (i + j >= width) {
printf("\n");
i = 0;