mirror of
https://github.com/torvalds/linux.git
synced 2026-05-05 23:05:25 -04:00
nilfs2: remove redundant continue statement in a while-loop
The continue statement at the end of the while-loop is redundant,
remove it.
Addresses-Coverity: ("Continue has no effect")
Link: https://lkml.kernel.org/r/20210621100519.10257-1-colin.king@canonical.com
Link: https://lkml.kernel.org/r/1624557664-17159-1-git-send-email-konishi.ryusuke@gmail.com
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
66ce75144d
commit
f4048e5aa1
@@ -738,7 +738,6 @@ static int nilfs_btree_lookup_contig(const struct nilfs_bmap *btree,
|
||||
if (ptr2 != ptr + cnt || ++cnt == maxblocks)
|
||||
goto end;
|
||||
index++;
|
||||
continue;
|
||||
}
|
||||
if (level == maxlevel)
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user