f2fs: Fix bool initialization/comparison
Bool initializations should use true and false. Bool tests don't need comparisons. Signed-off-by: Thomas Meyer <thomas@m3y3r.de> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
68e801abc5
commit
0c47a892d5
1 changed files with 2 additions and 2 deletions
|
|
@ -416,8 +416,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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue