int -> unsigned for 1 bit wide bitfields - we cannot have a value and a sign in 1 bit.
Fixes some of the Intel C++ 8.0 warnings (-w1 level).
struct process_block_struct {
ext2_ino_t ino;
- int is_dir:1, is_reg:1, clear:1, suppress:1,
+ unsigned is_dir:1, is_reg:1, clear:1, suppress:1,
fragmented:1, compressed:1, bbcheck:1;
blk_t num_blocks;
blk_t max_blocks;
char *buf;
unsigned long block;
int access_time;
- int dirty:1;
- int in_use:1;
+ unsigned dirty:1;
+ unsigned in_use:1;
};
#define CACHE_SIZE 8