From: Kazuya Mio Date: Mon, 6 Jul 2009 08:14:13 +0000 (+0900) Subject: e2fsck: remove unnecessary continue statement X-Git-Tag: v1.41.8~14 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=f27aea2fbaf03e5d63a8e3000e616ea3cd4774f8;p=tools%2Fe2fsprogs.git e2fsck: remove unnecessary continue statement Remove the continue statement because it calls at the end of the loop. Signed-off-by: Kazuya Mio Signed-off-by: Theodore Ts'o --- diff --git a/e2fsck/pass2.c b/e2fsck/pass2.c index bb3813c..889e39d 100644 --- a/e2fsck/pass2.c +++ b/e2fsck/pass2.c @@ -243,8 +243,6 @@ void e2fsck_pass2(e2fsck_t ctx) fix_problem(ctx, code, &pctx); bad_dir++; } - if (code == 0) - continue; } if (bad_dir && fix_problem(ctx, PR_2_HTREE_CLEAR, &pctx)) { clear_htree(ctx, dx_dir->ino);