From 90557d26c6282e8171b422966860eb5594b82eb5 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 10 May 2019 19:21:03 -0400 Subject: [PATCH 4/4] e2fsck: remove an potentially ambiguous dangling else clause This doesn't actually fix a bug or change behavior, but it removes a clang warning. Signed-off-by: Theodore Ts'o --- e2fsck/pass5.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2fsck/pass5.c b/e2fsck/pass5.c index 81009097..3a5c88da 100644 --- a/e2fsck/pass5.c +++ b/e2fsck/pass5.c @@ -886,11 +886,12 @@ static void check_inode_end(e2fsck_t ctx) * be written back to disk. */ check_intra_bg_tail: - if (!asked && fs->flags & EXT2_FLAG_IBITMAP_TAIL_PROBLEM) + if (!asked && fs->flags & EXT2_FLAG_IBITMAP_TAIL_PROBLEM) { if (fix_problem(ctx, PR_5_INODE_BMAP_PADDING, &pctx)) ext2fs_mark_ib_dirty(fs); else ext2fs_unmark_valid(fs); + } } static void check_block_end(e2fsck_t ctx) -- 2.20.1