btrfs-porgs: check: rename variable to avoid shadowing
authorDavid Sterba <dsterba@suse.com>
Tue, 12 Jan 2016 13:34:41 +0000 (14:34 +0100)
committerDavid Sterba <dsterba@suse.com>
Tue, 12 Jan 2016 14:02:56 +0000 (15:02 +0100)
Reported by gcc -Wshadow .

Signed-off-by: David Sterba <dsterba@suse.com>
cmds-check.c

index 680fc87..0165fba 100644 (file)
@@ -9218,11 +9218,11 @@ static int build_roots_info_cache(struct btrfs_fs_info *info)
                        iref = (struct btrfs_extent_inline_ref *)(ei + 1);
                        level = found_key.offset;
                } else {
-                       struct btrfs_tree_block_info *info;
+                       struct btrfs_tree_block_info *binfo;
 
-                       info = (struct btrfs_tree_block_info *)(ei + 1);
-                       iref = (struct btrfs_extent_inline_ref *)(info + 1);
-                       level = btrfs_tree_block_level(leaf, info);
+                       binfo = (struct btrfs_tree_block_info *)(ei + 1);
+                       iref = (struct btrfs_extent_inline_ref *)(binfo + 1);
+                       level = btrfs_tree_block_level(leaf, binfo);
                }
 
                /*