Whamcloud - gitweb
ChangeLog, mke2fs.c:
authorTheodore Ts'o <tytso@mit.edu>
Tue, 17 Jun 1997 03:57:27 +0000 (03:57 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 17 Jun 1997 03:57:27 +0000 (03:57 +0000)
  Adjust the number of columns printed when displaying the superblock
  backups to avoid running over 80 columns when making a really big
  disk.

misc/ChangeLog
misc/mke2fs.c

index c459966..a1d5591 100644 (file)
@@ -1,3 +1,9 @@
+Mon Jun 16 23:37:54 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * mke2fs.c (show_stats): Adjust the number of columns printed when
+               displaying the superblock backups to avoid running over 
+               80 columns when making a really big disk.
+
 Thu May  8 22:22:08 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * badblocks.8.in, chattr.1.in, dumpe2fs.8.in, fsck.8.in, 
index 99f0a21..96ce51e 100644 (file)
@@ -492,7 +492,7 @@ static void show_stats(ext2_filsys fs)
                        continue;
                if (!col_left--) {
                        printf("\n\t");
-                       col_left = 8;
+                       col_left = 6;
                }
                printf("%u", group_block);
                if (i != fs->group_desc_count - 1)