aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-06 19:50:16 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-06 19:50:16 +0000
commitaf90b2a8d4abc699467475fd46e6fdfbcd467944 (patch)
tree3618e1aa85d42841b834a9cc07a940ec43ae5258
parenteb43f6eeaa6a6942a7a1a8eb7d560d0a4a8fbbf7 (diff)
downloadbusybox-w32-af90b2a8d4abc699467475fd46e6fdfbcd467944.tar.gz
busybox-w32-af90b2a8d4abc699467475fd46e6fdfbcd467944.tar.bz2
busybox-w32-af90b2a8d4abc699467475fd46e6fdfbcd467944.zip
Whack the one last warning in make allbareconfig...
git-svn-id: svn://busybox.net/trunk/busybox@15299 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--util-linux/fsck_minix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c
index e93b007f8..db44848b8 100644
--- a/util-linux/fsck_minix.c
+++ b/util-linux/fsck_minix.c
@@ -215,7 +215,6 @@ static int changed; /* flags if the filesystem has been changed */
215static int errors_uncorrected; /* flag if some error was not corrected */ 215static int errors_uncorrected; /* flag if some error was not corrected */
216static int dirsize = 16; 216static int dirsize = 16;
217static int namelen = 14; 217static int namelen = 14;
218static int version2;
219static struct termios termios; 218static struct termios termios;
220static int termios_set; 219static int termios_set;
221 220
@@ -227,6 +226,7 @@ static char super_block_buffer[BLOCK_SIZE];
227#define Super (*(struct minix_super_block *)super_block_buffer) 226#define Super (*(struct minix_super_block *)super_block_buffer)
228#define INODES ((unsigned long)Super.s_ninodes) 227#define INODES ((unsigned long)Super.s_ninodes)
229#ifdef CONFIG_FEATURE_MINIX2 228#ifdef CONFIG_FEATURE_MINIX2
229static int version2;
230#define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones)) 230#define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones))
231#else 231#else
232#define ZONES ((unsigned long)(Super.s_nzones)) 232#define ZONES ((unsigned long)(Super.s_nzones))