]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
e2fsck: remove an potentially ambiguous dangling else clause
authorTheodore Ts'o <tytso@mit.edu>
Fri, 10 May 2019 23:21:03 +0000 (19:21 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Sun, 12 May 2019 06:23:08 +0000 (02:23 -0400)
This doesn't actually fix a bug or change behavior, but it removes a
clang warning.

Signed-off-by: Theodore Ts'o <tytso@mit.edu>
e2fsck/pass5.c

index 810090970b2bfdd0ae0251547f8e758a83ddddc5..3a5c88dad9f2b3ab716ebdba730b949de3201546 100644 (file)
@@ -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)