diff options
author | Theodore Ts'o <tytso@mit.edu> | 1997-06-17 03:57:27 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 1997-06-17 03:57:27 +0000 |
commit | e22d4616efcea5e5920e4cc9526b27bb5a79cf01 (patch) | |
tree | 9bc9f113aae56eed07e99401c303c056e4780892 | |
parent | 549860c5c7a5a2974c103a55d881fbd5701aff13 (diff) | |
download | e2fsprogs-e22d4616efcea5e5920e4cc9526b27bb5a79cf01.tar.gz |
ChangeLog, mke2fs.c:
Adjust the number of columns printed when displaying the superblock
backups to avoid running over 80 columns when making a really big
disk.
-rw-r--r-- | misc/ChangeLog | 6 | ||||
-rw-r--r-- | misc/mke2fs.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/misc/ChangeLog b/misc/ChangeLog index c4599668..a1d55917 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -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, diff --git a/misc/mke2fs.c b/misc/mke2fs.c index 99f0a211..96ce51e7 100644 --- a/misc/mke2fs.c +++ b/misc/mke2fs.c @@ -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) |