ChangeLog, mke2fs.c:

Fix display bug when printing out the number of superblocks.
  Suggested by Yann Dirson.
This commit is contained in:
Theodore Ts'o 1999-10-20 18:06:29 +00:00
parent 67efcf71ab
commit 7671433a9d
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
1999-09-15 <tytso@rsts-11.mit.edu>
* mke2fs.c (show_stats): Fix display bug when printing out the
number of superblocks. Suggested by Yann Dirson.
1999-09-08 <tytso@valinux.com>
* partinfo.c: Fix minor compilation bugs pointed out by Yann

View File

@ -19,7 +19,6 @@
#include <string.h>
#include <fcntl.h>
#include <ctype.h>
#include <termios.h>
#include <time.h>
#ifdef linux
#include <sys/utsname.h>
@ -599,6 +598,8 @@ static void show_stats(ext2_filsys fs)
group_block += s->s_blocks_per_group;
if (!ext2fs_bg_has_super(fs, i))
continue;
if (i != 1)
printf(", ");
need = log10(group_block) + 2;
if (need > col_left) {
printf("\n\t");
@ -606,8 +607,6 @@ static void show_stats(ext2_filsys fs)
}
col_left -= need;
printf("%u", group_block);
if (i != fs->group_desc_count - 1)
printf(", ");
}
printf("\n\n");
}