mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-16 17:56:51 +00:00
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 lru;
|
||||||
struct list_head recow;
|
struct list_head recow;
|
||||||
int refs;
|
int refs;
|
||||||
int flags;
|
u32 flags;
|
||||||
int fd;
|
int fd;
|
||||||
char data[];
|
char data[];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user