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:
David Sterba 2016-07-27 23:19:20 +02:00
parent 24f1713777
commit bf3a4c5f1b

View file

@ -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[];
};