aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiu Song <liu.song11@zte.com.cn>2018-08-19 23:54:30 -0400
committerRichard Weinberger <richard@nod.at>2019-07-08 13:43:43 -0400
commit7d8c811bf9ed513a586b18a28b788dd10fbe1128 (patch)
tree17b0f094735825b9bde51232ded62da76728fbb6
parentd5cf9473a3f3b2bdd09c4a70ac9da037cdfc1f47 (diff)
ubifs: Fix typo of output in get_cs_sqnum
"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>
-rw-r--r--fs/ubifs/recovery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/recovery.c b/fs/ubifs/recovery.c
index 3fc589881825..f116f7b3f9e5 100644
--- a/fs/ubifs/recovery.c
+++ b/fs/ubifs/recovery.c
@@ -818,7 +818,7 @@ static int get_cs_sqnum(struct ubifs_info *c, int lnum, int offs,
818 goto out_err; 818 goto out_err;
819 } 819 }
820 if (cs_node->ch.node_type != UBIFS_CS_NODE) { 820 if (cs_node->ch.node_type != UBIFS_CS_NODE) {
821 ubifs_err(c, "Node a CS node, type is %d", cs_node->ch.node_type); 821 ubifs_err(c, "Not a CS node, type is %d", cs_node->ch.node_type);
822 goto out_err; 822 goto out_err;
823 } 823 }
824 if (le64_to_cpu(cs_node->cmt_no) != c->cmt_no) { 824 if (le64_to_cpu(cs_node->cmt_no) != c->cmt_no) {