fsck.f2fs: reduce redundant message

This assert message is unnecessary to be shown, since caller shows the reason
already.

Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Jaegeuk Kim 2015-03-25 17:15:58 -07:00
parent fb5eef1d7e
commit a81e54404c

View File

@ -340,7 +340,7 @@ static inline bool IS_VALID_BLK_ADDR(struct f2fs_sb_info *sbi, u32 addr)
if (addr >= F2FS_RAW_SUPER(sbi)->block_count ||
addr < SM_I(sbi)->main_blkaddr) {
ASSERT_MSG("block addr [0x%x]\n", addr);
DBG(1, "block addr [0x%x]\n", addr);
return 0;
}