]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
repair: add missing newlines to scan.c
authorEric Sandeen <sandeen@sandeen.net>
Mon, 25 Jan 2010 15:34:18 +0000 (09:34 -0600)
committerEric Sandeen <sandeen@sandeen.net>
Mon, 25 Jan 2010 15:34:18 +0000 (09:34 -0600)
Commit c83b756da0dac727457022d88d2a0ace30a6dc09 added some new
do_warn's but omitted the "\n" leading to some pretty messy
output when we go down this path.

Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
repair/scan.c

index c4d2825c84faaa226eb9863e86e140a5d420dcea..85017ffd7065ab29217cfb4352b6a29bf85c5f44 100644 (file)
@@ -563,13 +563,13 @@ _("%s freespace btree block claimed (state %d), agno %d, bno %d, suspect %d\n"),
 
                        if (b == 0 || !verify_agbno(mp, agno, b)) {
                                do_warn(
-       _("invalid start block %u in record %u of %d btree block %u/%u"),
+       _("invalid start block %u in record %u of %d btree block %u/%u\n"),
                                        b, i, name, agno, bno);
                                continue;
                        }
                        if (len == 0 || !verify_agbno(mp, agno, end - 1)) {
                                do_warn(
-       _("invalid length %u in record %u of %d btree block %u/%u"),
+       _("invalid length %u in record %u of %d btree block %u/%u\n"),
                                        len, i, name, agno, bno);
                                continue;
                        }