From: Kirk McKusick Date: Mon, 25 Jul 1994 14:26:10 +0000 (-0800) Subject: don't spill superblock numbers for big disks X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/aeebed64bf40b80c28ab1bdce91257e1752facad don't spill superblock numbers for big disks SCCS-vsn: sbin/newfs/mkfs.c 8.5 --- diff --git a/usr/src/sbin/newfs/mkfs.c b/usr/src/sbin/newfs/mkfs.c index 702d19a11d..ea2197ffed 100644 --- a/usr/src/sbin/newfs/mkfs.c +++ b/usr/src/sbin/newfs/mkfs.c @@ -6,7 +6,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)mkfs.c 8.4 (Berkeley) %G%"; +static char sccsid[] = "@(#)mkfs.c 8.5 (Berkeley) %G%"; #endif /* not lint */ #include @@ -561,7 +561,7 @@ next: initcg(cylno, utime); if (mfs) continue; - if (cylno % 9 == 0) + if (cylno % 8 == 0) printf("\n"); printf(" %d,", fsbtodb(&sblock, cgsblock(&sblock, cylno))); }