ubifs: Fix typo of output in get_cs_sqnum
authorLiu Song <liu.song11@zte.com.cn>
Mon, 20 Aug 2018 03:54:30 +0000 (11:54 +0800)
committerRichard Weinberger <richard@nod.at>
Mon, 8 Jul 2019 17:43:43 +0000 (19:43 +0200)
"Not a CS node" makes more sense than "Node a CS node".

Signed-off-by: Liu Song <liu.song11@zte.com.cn>
Reviewed-by: Jiang Biao <jiang.biao2@zte.com.cn>
Signed-off-by: Richard Weinberger <richard@nod.at>
fs/ubifs/recovery.c

index 3fc589881825d4810c773e2828ae2d6ab3621c77..f116f7b3f9e5fa5761efc7c1cc375c2dd18ffd21 100644 (file)
@@ -818,7 +818,7 @@ static int get_cs_sqnum(struct ubifs_info *c, int lnum, int offs,
                goto out_err;
        }
        if (cs_node->ch.node_type != UBIFS_CS_NODE) {
-               ubifs_err(c, "Node a CS node, type is %d", cs_node->ch.node_type);
+               ubifs_err(c, "Not a CS node, type is %d", cs_node->ch.node_type);
                goto out_err;
        }
        if (le64_to_cpu(cs_node->cmt_no) != c->cmt_no) {