btrfs-progs: use unsigned type for extent_buffer flags
We're doing bit operations. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
24f1713777
commit
bf3a4c5f1b
|
@ -95,7 +95,7 @@ struct extent_buffer {
|
|||
struct list_head lru;
|
||||
struct list_head recow;
|
||||
int refs;
|
||||
int flags;
|
||||
u32 flags;
|
||||
int fd;
|
||||
char data[];
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue