Fix some typing errors in libfdt.h and livetree.c

Correct some typos discovered with the codespell utility.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
Thomas Huth
2016-09-26 18:12:26 +02:00
committed by David Gibson
parent a59be4939c
commit 45fd440a95
2 changed files with 3 additions and 3 deletions

View File

@@ -204,7 +204,7 @@ struct node *merge_nodes(struct node *old_node, struct node *new_node)
}
}
/* if no collision occured, add child to the old node. */
/* if no collision occurred, add child to the old node. */
if (new_child)
add_child(old_node, new_child);
}