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

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
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment