From: Eric Biggers Date: Sat, 21 Jan 2023 20:32:09 +0000 (-0800) Subject: lib/ext2fs: remove unused variable in ext2fs_xattrs_read_inode() X-Git-Tag: v1.47.0~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=525e37988d8f6f880fef56b9d3ba4e2bac17b226;p=thirdparty%2Fe2fsprogs.git lib/ext2fs: remove unused variable in ext2fs_xattrs_read_inode() Address the following compiler warning with gcc -Wall: ext_attr.c: In function ‘ext2fs_xattrs_read_inode’: ext_attr.c:1000:16: warning: unused variable ‘i’ [-Wunused-variable] 1000 | size_t i; | ^ Cc: Andreas Dilger Reviewed-by: Lukas Czerner Signed-off-by: Eric Biggers Signed-off-by: Theodore Ts'o --- diff --git a/lib/ext2fs/ext_attr.c b/lib/ext2fs/ext_attr.c index d36fe68dd..359c8e3cb 100644 --- a/lib/ext2fs/ext_attr.c +++ b/lib/ext2fs/ext_attr.c @@ -991,13 +991,11 @@ static void xattrs_free_keys(struct ext2_xattr_handle *h) errcode_t ext2fs_xattrs_read_inode(struct ext2_xattr_handle *handle, struct ext2_inode_large *inode) { - struct ext2_ext_attr_header *header; __u32 ea_inode_magic; unsigned int storage_size; char *start, *block_buf = NULL; blk64_t blk; - size_t i; errcode_t err = 0; EXT2_CHECK_MAGIC(handle, EXT2_ET_MAGIC_EA_HANDLE);