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

Commit cc71a4a9 authored by Thomas Meyer's avatar Thomas Meyer Committed by Jaegeuk Kim
Browse files

f2fs: Fix bool initialization/comparison



Bool initializations should use true and false. Bool tests don't need
comparisons.

Signed-off-by: default avatarThomas Meyer <thomas@m3y3r.de>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 549f9f84
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -417,8 +417,8 @@ next:

	bio_page = fio->encrypted_page ? fio->encrypted_page : fio->page;

	/* set submitted = 1 as a return value */
	fio->submitted = 1;
	/* set submitted = true as a return value */
	fio->submitted = true;

	inc_page_count(sbi, WB_DATA_TYPE(bio_page));