Whamcloud - gitweb
ChangeLog, mke2fs.c:
authorTheodore Ts'o <tytso@mit.edu>
Wed, 20 Oct 1999 18:06:29 +0000 (18:06 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 20 Oct 1999 18:06:29 +0000 (18:06 +0000)
  Fix display bug when printing out the number of superblocks.
  Suggested by Yann Dirson.

misc/ChangeLog
misc/mke2fs.c

index c919cfb..5bedb96 100644 (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
index c8ac45e..0aad8e5 100644 (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");
 }