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

Commit 9df47ba7 authored by Taehee Yoo's avatar Taehee Yoo Committed by Jaegeuk Kim
Browse files

f2fs: change 0 to false for bool type



in the f2fs_fill_super function, variable "retry" is bool type
i think that it should be set as false.

Signed-off-by: default avatarTaehee Yoo <ap420073@gmail.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent e03b07d9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1230,7 +1230,7 @@ static int f2fs_fill_super(struct super_block *sb, void *data, int silent)

	/* give only one another chance */
	if (retry) {
		retry = 0;
		retry = false;
		shrink_dcache_sb(sb);
		goto try_onemore;
	}