Skip to content

Commit

Permalink
udf: remove unused variable in udf_table_free_blocks()
Browse files Browse the repository at this point in the history
Fix set but not used warning.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Jan Kara <jack@suse.cz>
  • Loading branch information
Fabian Frederick authored and Jan Kara committed Mar 14, 2015
1 parent 7e08da5 commit f4a45c9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fs/udf/balloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@ static void udf_table_free_blocks(struct super_block *sb,
struct kernel_lb_addr eloc;
struct extent_position oepos, epos;
int8_t etype;
int i;
struct udf_inode_info *iinfo;

mutex_lock(&sbi->s_alloc_mutex);
Expand Down Expand Up @@ -425,7 +424,6 @@ static void udf_table_free_blocks(struct super_block *sb,
}

if (epos.bh != oepos.bh) {
i = -1;
oepos.block = epos.block;
brelse(oepos.bh);
get_bh(epos.bh);
Expand Down

0 comments on commit f4a45c9

Please sign in to comment.