fsck.f2fs: remove unneeded return
To show better output.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
diff --git a/fsck/fsck.c b/fsck/fsck.c
index 4dbbc38..78737d5 100644
--- a/fsck/fsck.c
+++ b/fsck/fsck.c
@@ -23,14 +23,14 @@
if (se->type != type) {
if (type == CURSEG_WARM_DATA) {
if (se->type != CURSEG_COLD_DATA) {
- FIX_MSG("Wrong segment type [0x%x] %x -> %x\n",
+ FIX_MSG("Wrong segment type [0x%x] %x -> %x",
GET_SEGNO(sbi, blk), se->type,
CURSEG_WARM_DATA);
se->type = CURSEG_WARM_DATA;
config.bug_on = 1;
}
} else {
- FIX_MSG("Wrong segment type [0x%x] %x -> %x\n",
+ FIX_MSG("Wrong segment type [0x%x] %x -> %x",
GET_SEGNO(sbi, blk), se->type, type);
se->type = type;
config.bug_on = 1;
@@ -881,7 +881,7 @@
nid_t ino = le32_to_cpu(orphan_blk->ino[j]);
DBG(1, "[%3d] ino [0x%x]\n", i, ino);
if (config.fix_on) {
- FIX_MSG("Discard orphan inodes: ino [0x%x]\n",
+ FIX_MSG("Discard orphan inodes: ino [0x%x]",
ino);
continue;
}