mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2024-11-15 16:24:21 +08:00
btrfs-progs: image: fix compiler warning
In v4.8-rc1, gcc 5.3.1 gives following warning. Fixed it. [CC] btrfs-image.o btrfs-image.c: In function 'flush_pending': btrfs-image.c:708:17: warning: 'start' may be used uninitialized in this function [-Wmaybe-uninitialized] header->bytenr = cpu_to_le64(start); ^ btrfs-image.c:927:6: note: 'start' was declared here u64 start; ^ Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
8c663f9f36
commit
c9ec835ae1
@ -924,7 +924,7 @@ static int flush_pending(struct metadump_struct *md, int done)
|
||||
struct async_work *async = NULL;
|
||||
struct extent_buffer *eb;
|
||||
u64 blocksize = md->root->nodesize;
|
||||
u64 start;
|
||||
u64 start = 0;
|
||||
u64 size;
|
||||
size_t offset;
|
||||
int ret = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user