aboutsummaryrefslogtreecommitdiff
path: root/livetree.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2016-09-26 18:12:26 +0200
committerDavid Gibson <david@gibson.dropbear.id.au>2016-09-27 11:32:46 +1000
commit45fd440a956112c78dc3b602e3a618f22f495db2 (patch)
tree6d8fbdca321da180fd1f3bd98b68e97a2782de7a /livetree.c
parenta59be4939c13d907a17b190ee6baa01515300a29 (diff)
downloaddtc-45fd440a956112c78dc3b602e3a618f22f495db2.zip
dtc-45fd440a956112c78dc3b602e3a618f22f495db2.tar.gz
dtc-45fd440a956112c78dc3b602e3a618f22f495db2.tar.bz2
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>
Diffstat (limited to 'livetree.c')
-rw-r--r--livetree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/livetree.c b/livetree.c
index e229b84..3dc7559 100644
--- a/livetree.c
+++ b/livetree.c
@@ -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);
}