makefs(8): do not print comma after the last super-block

Reviewed by:	markj, emaste
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D39430
This commit is contained in:
Christos Margiolis 2023-04-05 18:25:19 -04:00 committed by Mark Johnston
parent 5f6d37787f
commit f21faa67ab

View File

@ -529,8 +529,9 @@ ffs_mkfs(const char *fsys, const fsinfo_t *fsopts, time_t tstamp)
initcg(cylno, tstamp, fsopts);
if (cylno % nprintcols == 0)
printf("\n");
printf(" %*lld,", printcolwidth,
(long long)fsbtodb(&sblock, cgsblock(&sblock, cylno)));
printf(" %*lld%s", printcolwidth,
(long long)fsbtodb(&sblock, cgsblock(&sblock, cylno)),
cylno == sblock.fs_ncg - 1 ? "" : ",");
fflush(stdout);
}
printf("\n");