Commit e94acd86 authored by Valentina Giusti's avatar Valentina Giusti Committed by Chris Mason

btrfs: replace path->slots[0] with otherwise unused variable 'slot'

Signed-off-by: default avatarValentina Giusti <valentina.giusti@microon.de>
Signed-off-by: default avatarJosef Bacik <jbacik@fusionio.com>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent ce3e7f10
...@@ -1683,8 +1683,8 @@ static int iterate_inode_extrefs(u64 inum, struct btrfs_root *fs_root, ...@@ -1683,8 +1683,8 @@ static int iterate_inode_extrefs(u64 inum, struct btrfs_root *fs_root,
btrfs_release_path(path); btrfs_release_path(path);
leaf = path->nodes[0]; leaf = path->nodes[0];
item_size = btrfs_item_size_nr(leaf, path->slots[0]); item_size = btrfs_item_size_nr(leaf, slot);
ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); ptr = btrfs_item_ptr_offset(leaf, slot);
cur_offset = 0; cur_offset = 0;
while (cur_offset < item_size) { while (cur_offset < item_size) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment