btrfs-progs: use unsigned type for extent_buffer flags

We're doing bit operations.

Signed-off-by: David Sterba <dsterba@suse.com>
master
David Sterba 2016-07-27 23:19:20 +02:00
parent 24f1713777
commit bf3a4c5f1b
1 changed files with 1 additions and 1 deletions

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