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: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Taehee Yoo 2015-04-13 21:48:06 +09:00 committed by Jaegeuk Kim
parent e03b07d908
commit 9df47ba759
1 changed files with 1 additions and 1 deletions

View File

@ -1230,7 +1230,7 @@ free_sbi:
/* give only one another chance */
if (retry) {
retry = 0;
retry = false;
shrink_dcache_sb(sb);
goto try_onemore;
}