From c8581b3fed4d3685fe673a891af5a721bcedd1bf Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Mon, 29 Sep 2025 21:30:04 +0100 Subject: [PATCH] include/common/xml.h: fix declaration/definition arg name difference --- include/common/xml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/xml.h b/include/common/xml.h index 16c319ec..e218226f 100644 --- a/include/common/xml.h +++ b/include/common/xml.h @@ -25,7 +25,7 @@ * * */ -void lab_xml_expand_dotted_attributes(xmlNode *root); +void lab_xml_expand_dotted_attributes(xmlNode *parent); /* Returns true if the node only contains a string or is empty */ bool lab_xml_node_is_leaf(xmlNode *node);