btrfs-progs: check/original: Remove unused variable first_key
This @first_key variable is introduced inf5c4c4f3b7
("btrfsck: add code to rebuild extent records"), however it's not only unused, but also used incorrectly. It's calling btrfs_item_key_to_cpu() on an node extent buffer. Anyway, just remove it. Fixes:f5c4c4f3b7
("btrfsck: add code to rebuild extent records") Signed-off-by: Qu Wenruo <wqu@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
c074434fb5
commit
35a629514e
|
@ -6103,12 +6103,7 @@ static int run_next_block(struct btrfs_root *root,
|
|||
}
|
||||
} else {
|
||||
int level;
|
||||
struct btrfs_key first_key;
|
||||
|
||||
first_key.objectid = 0;
|
||||
|
||||
if (nritems > 0)
|
||||
btrfs_item_key_to_cpu(buf, &first_key, 0);
|
||||
level = btrfs_header_level(buf);
|
||||
for (i = 0; i < nritems; i++) {
|
||||
struct extent_record tmpl;
|
||||
|
|
Loading…
Reference in New Issue