From 7a29dc21e89b97bec4f495bf246f991c1720545b Mon Sep 17 00:00:00 2001 From: zyc9012 Date: Sun, 1 Sep 2024 17:28:34 +0800 Subject: [PATCH] Fix compilation error --- patches/0004-lexbor-fix-template-clone.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/0004-lexbor-fix-template-clone.patch b/patches/0004-lexbor-fix-template-clone.patch index 405e2d0..2a6f425 100644 --- a/patches/0004-lexbor-fix-template-clone.patch +++ b/patches/0004-lexbor-fix-template-clone.patch @@ -16,7 +16,7 @@ index a2153f4..8a9c69f 100755 + if (curr->local_name == LXB_TAG_TEMPLATE && curr->first_child != NULL && cnode->type == LXB_DOM_NODE_TYPE_DOCUMENT_FRAGMENT) { + lxb_dom_node_remove(curr->first_child); -+ lxb_html_interface_template(curr)->content = cnode; ++ lxb_html_interface_template(curr)->content = (lxb_dom_document_fragment_t *)cnode; + } + lxb_dom_node_insert_child(curr, cnode);