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

Commit f58d6c75 authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds
Browse files

fs/hpfs/dnode.c: fix suspect code indent



Fix 2 checkpatch warnings:

  WARNING: suspect code indent for conditional statements

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Cc: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f3fb9e27
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
@@ -548,7 +548,8 @@ static void delete_empty_dnode(struct inode *i, dnode_secno dno)
				if (up != i->i_ino) {
					hpfs_error(i->i_sb,
						   "bad pointer to fnode, dnode %08x, pointing to %08x, should be %08lx",
					dno, up, (unsigned long)i->i_ino);
						   dno, up,
						   (unsigned long)i->i_ino);
					return;
				}
			if ((d1 = hpfs_map_dnode(i->i_sb, down, &qbh1))) {