1
0
mirror of https://github.com/sheumann/hush.git synced 2024-12-30 05:29:47 +00:00

Whack the one last warning in make allbareconfig...

This commit is contained in:
Rob Landley 2006-06-06 19:50:16 +00:00
parent 280dae74b0
commit c44ab02f15

View File

@ -215,7 +215,6 @@ static int changed; /* flags if the filesystem has been changed */
static int errors_uncorrected; /* flag if some error was not corrected */ static int errors_uncorrected; /* flag if some error was not corrected */
static int dirsize = 16; static int dirsize = 16;
static int namelen = 14; static int namelen = 14;
static int version2;
static struct termios termios; static struct termios termios;
static int termios_set; static int termios_set;
@ -227,6 +226,7 @@ static char super_block_buffer[BLOCK_SIZE];
#define Super (*(struct minix_super_block *)super_block_buffer) #define Super (*(struct minix_super_block *)super_block_buffer)
#define INODES ((unsigned long)Super.s_ninodes) #define INODES ((unsigned long)Super.s_ninodes)
#ifdef CONFIG_FEATURE_MINIX2 #ifdef CONFIG_FEATURE_MINIX2
static int version2;
#define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones)) #define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones))
#else #else
#define ZONES ((unsigned long)(Super.s_nzones)) #define ZONES ((unsigned long)(Super.s_nzones))