From f4eba68d89ee8d35d1f94ec8b38481a64a5395e7 Mon Sep 17 00:00:00 2001 From: Geert Uytterhoeven Date: Tue, 27 Mar 2018 14:13:31 +0200 Subject: [PATCH] checks: Print duplicate node name instead of parent name When refactoring node path printing, the code checking for duplicate node names was accidentally changed to print the name of the parent node, instead of the name of the duplicated child node. Fixes: 88960e3989073207 ("checks: centralize printing of node path in check_msg") Signed-off-by: Geert Uytterhoeven Signed-off-by: David Gibson --- checks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks.c b/checks.c index 1e6a88c..e6a38a8 100644 --- a/checks.c +++ b/checks.c @@ -255,7 +255,7 @@ static void check_duplicate_node_names(struct check *c, struct dt_info *dti, child2; child2 = child2->next_sibling) if (streq(child->name, child2->name)) - FAIL(c, dti, node, "Duplicate node name"); + FAIL(c, dti, child2, "Duplicate node name"); } ERROR(duplicate_node_names, check_duplicate_node_names, NULL);