Commit 390add0c authored by Theodore Ts'o's avatar Theodore Ts'o

jbd2: fix clang warning in recovery.c

Remove unused variable store which was never used.

This fix is also in e2fsprogs commit 99a2294f85f0 ("e2fsck: value
stored to err is never read").
Signed-off-by: default avatarLukas Czerner <lczerner@redhat.com>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent a20d1ceb
...@@ -760,7 +760,6 @@ static int do_one_pass(journal_t *journal, ...@@ -760,7 +760,6 @@ static int do_one_pass(journal_t *journal,
*/ */
jbd_debug(1, "JBD2: Invalid checksum ignored in transaction %u, likely stale data\n", jbd_debug(1, "JBD2: Invalid checksum ignored in transaction %u, likely stale data\n",
next_commit_ID); next_commit_ID);
err = 0;
brelse(bh); brelse(bh);
goto done; goto done;
} }
......
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