Commit 39354d92 authored by Anas Nashif's avatar Anas Nashif Committed by Kumar Gala
Browse files

size_report: give root node a unique identifier


Call the root node 'root', otherwise we end up with two nodes with the
same identifier ':'.
Signed-off-by: default avatarAnas Nashif <anas.nashif@intel.com>
parent 45bd3dee
Showing with 1 addition and 1 deletion
+1 -1
......@@ -557,7 +557,7 @@ def generate_any_tree(symbol_dict, total_size, path_prefix):
"""
Generate a symbol tree for output.
"""
root = TreeNode('Symbols', ":")
root = TreeNode('Symbols', "root")
node_no_paths = TreeNode('(no paths)', ":", parent=root)
if Path(path_prefix) == Path(args.zephyrbase):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment