From 96367ad3bc849220651b20f41340b48e07e82b04 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Wed, 15 Jun 2011 22:17:38 -0400 Subject: misc: quiet "unused variable" compiler warnings Some of the newly-merged patches added "unused variable" compiler warnings. Delete unused variables. Signed-off-by: Andreas Dilger Signed-off-by: Theodore Ts'o --- lib/ext2fs/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ext2fs') diff --git a/lib/ext2fs/alloc.c b/lib/ext2fs/alloc.c index d96b2aad..835f7837 100644 --- a/lib/ext2fs/alloc.c +++ b/lib/ext2fs/alloc.c @@ -258,7 +258,7 @@ errcode_t ext2fs_alloc_block(ext2_filsys fs, blk_t goal, errcode_t ext2fs_get_free_blocks2(ext2_filsys fs, blk64_t start, blk64_t finish, int num, ext2fs_block_bitmap map, blk64_t *ret) { - blk64_t b = start, c = 0; + blk64_t b = start; int c_ratio; EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS); -- cgit v1.2.3