From: Taehee Yoo Date: Mon, 13 Apr 2015 12:48:06 +0000 (+0900) Subject: f2fs: change 0 to false for bool type X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9df47ba759e40ea2facd0601d4888abb37ed9658;p=deliverable%2Flinux.git 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 Signed-off-by: Jaegeuk Kim --- 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: /* give only one another chance */ if (retry) { - retry = 0; + retry = false; shrink_dcache_sb(sb); goto try_onemore; }