This commit is contained in:
Nishi 2025-12-28 17:19:09 +09:00
commit 25917df5ec
Signed by: nishi
GPG key ID: 27EF69B208EB9343

View file

@ -420,7 +420,7 @@ int xl_parse(xemil_t* handle) {
return 1;
}
void recursive_free(xl_node_t* node) {
static void recursive_free(xl_node_t* node) {
xl_node_t* n = node->first_child;
xl_attribute_t* a = node->first_attribute;
while(n != NULL) {