From 19a2e1f4611eeff9668dacecafb6e51b5ca0f704 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Wed, 14 Aug 2013 16:16:34 -0700 Subject: btrfs-progs: fix shadow symbols This fixes all the instances of warnings that symbols declared in blocks shadow symbols with the same name in surrounding scopes: cmds-device.c:341:22: warning: symbol 'path' shadows an earlier one cmds-device.c:285:14: originally declared here I just renamed or removed the risky shadow symbols instead of pulling their blocks out into functions. Signed-off-by: Zach Brown Signed-off-by: David Sterba Signed-off-by: Chris Mason --- volumes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'volumes.c') diff --git a/volumes.c b/volumes.c index 1f172b5..e460bce 100644 --- a/volumes.c +++ b/volumes.c @@ -1281,7 +1281,7 @@ again: BTRFS_BLOCK_GROUP_RAID6)) { if (raid_map) { - int i, rot; + int rot; u64 tmp; u64 raid56_full_stripe_start; u64 full_stripe_len = nr_data_stripes(map) * map->stripe_len; -- cgit v1.2.1