]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
f2fs: change 0 to false for bool type
authorTaehee Yoo <ap420073@gmail.com>
Mon, 13 Apr 2015 12:48:06 +0000 (21:48 +0900)
committerJaegeuk Kim <jaegeuk@kernel.org>
Wed, 15 Apr 2015 23:13:28 +0000 (16:13 -0700)
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>
fs/f2fs/super.c

index 45aa843fa59756535010cd0af1a4da8d617db967..160b88346b2477466f3ed34d4d2dff2509742d7e 100644 (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;
        }