diff options
author | Taehee Yoo <ap420073@gmail.com> | 2015-04-13 08:48:06 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-04-15 19:13:28 -0400 |
commit | 9df47ba759e40ea2facd0601d4888abb37ed9658 (patch) | |
tree | 6728b08689f0c795c4423f2b76ec583455d57280 | |
parent | e03b07d9084d03e896b7f1a598a7f6aa18f6eeda (diff) |
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>
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 45aa843fa597..160b88346b24 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c | |||
@@ -1230,7 +1230,7 @@ free_sbi: | |||
1230 | 1230 | ||
1231 | /* give only one another chance */ | 1231 | /* give only one another chance */ |
1232 | if (retry) { | 1232 | if (retry) { |
1233 | retry = 0; | 1233 | retry = false; |
1234 | shrink_dcache_sb(sb); | 1234 | shrink_dcache_sb(sb); |
1235 | goto try_onemore; | 1235 | goto try_onemore; |
1236 | } | 1236 | } |