[core] fixed some bugs
This commit is contained in:
parent
79c5c0a26a
commit
f41a5e8b89
|
@ -108,18 +108,13 @@ static int rec_output_module_hierarchy_to_text_file(
|
||||||
}
|
}
|
||||||
if (hie_depth_to_stop == current_hie_depth || use_list) {
|
if (hie_depth_to_stop == current_hie_depth || use_list) {
|
||||||
fp << "- ";
|
fp << "- ";
|
||||||
}
|
fp << module_name_map.name(module_manager.module_name(child_module));
|
||||||
fp << module_name_map.name(module_manager.module_name(child_module));
|
fp << "\n";
|
||||||
|
} else {
|
||||||
/* If this is the leaf node, we leave a new line
|
fp << module_name_map.name(module_manager.module_name(child_module));
|
||||||
* Otherwise, we will leave a ':' to be compatible to YAML file format
|
|
||||||
*/
|
|
||||||
if ((!module_manager.child_modules(child_module).empty()) &&
|
|
||||||
(hie_depth_to_stop >= current_hie_depth + 1)) {
|
|
||||||
fp << ":";
|
fp << ":";
|
||||||
|
fp << "\n";
|
||||||
}
|
}
|
||||||
fp << "\n";
|
|
||||||
|
|
||||||
/* Go to next level */
|
/* Go to next level */
|
||||||
int status = rec_output_module_hierarchy_to_text_file(
|
int status = rec_output_module_hierarchy_to_text_file(
|
||||||
fp, hie_depth_to_stop,
|
fp, hie_depth_to_stop,
|
||||||
|
|
Loading…
Reference in New Issue