diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format/part.c b/src/format/part.c index 006cb75..371c1ef 100644 --- a/src/format/part.c +++ b/src/format/part.c @@ -220,7 +220,7 @@ bool g_binary_part_save_to_xml(const GBinPart *part, xmlDocPtr xdoc, xmlNodePtr node = add_node_to_node(xdoc, parent, "Part"); if (node == NULL) return false; - result = add_string_attribute_to_node(node, "name", part->name); + result = _add_string_attribute_to_node(node, "name", part->name); result &= add_long_attribute_to_node(node, "offset", part->offset); result &= add_long_attribute_to_node(node, "size", part->size); |