From 278b8e24097d15be9274fa095b90248d2a367398 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Fri, 22 Sep 2023 17:37:27 -0700 Subject: [PATCH] [lib] fixed a typo which causes outputted module name XMLs carry syntax errors --- libs/libnamemanager/src/io/write_xml_module_name_map.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/libnamemanager/src/io/write_xml_module_name_map.cpp b/libs/libnamemanager/src/io/write_xml_module_name_map.cpp index 74bdfa9e8e..8ccd81c5c6 100644 --- a/libs/libnamemanager/src/io/write_xml_module_name_map.cpp +++ b/libs/libnamemanager/src/io/write_xml_module_name_map.cpp @@ -74,7 +74,7 @@ static int write_xml_module_name_binding(std::fstream& fp, return 1; } write_xml_attribute(fp, XML_MODULE_NAME_ATTRIBUTE_GIVEN, given_name.c_str()); - fp << ">" + fp << "/>" << "\n"; return 0;