Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa13d5f6 authored by Giedrius Rekasius's avatar Giedrius Rekasius Committed by Theodore Ts'o
Browse files

ext4: remove unused local variable "stored" from ext4_readdir(...)



Remove local variable "stored" from ext4_readdir(...). This variable 
gets initialized but is never used inside the function.

Signed-off-by: default avatarGiedrius Rekasius <giedrius.rekasius@gmail.com>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent e1ee60fd
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@ int __ext4_check_dir_entry(const char *function, unsigned int line,
static int ext4_readdir(struct file *file, struct dir_context *ctx)
{
	unsigned int offset;
	int i, stored;
	int i;
	struct ext4_dir_entry_2 *de;
	int err;
	struct inode *inode = file_inode(file);
@@ -133,7 +133,6 @@ static int ext4_readdir(struct file *file, struct dir_context *ctx)
			return ret;
	}

	stored = 0;
	offset = ctx->pos & (sb->s_blocksize - 1);

	while (ctx->pos < inode->i_size) {