From b226ea0af17319d7df3490392a7636331ff6ab01 Mon Sep 17 00:00:00 2001 From: John-Mark Bell Date: Thu, 5 Jul 2012 20:41:30 +0100 Subject: Fix testsuite --- test/tree2.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/tree2.c') diff --git a/test/tree2.c b/test/tree2.c index a964951..15f75db 100644 --- a/test/tree2.c +++ b/test/tree2.c @@ -93,6 +93,7 @@ static hubbub_error form_associate(void *ctx, void *form, void *node); static hubbub_error add_attributes(void *ctx, void *node, const hubbub_attribute *attributes, uint32_t n_attributes); static hubbub_error set_quirks_mode(void *ctx, hubbub_quirks_mode mode); +static hubbub_error complete_script(void *ctx, void *script); static void delete_node(node_t *node); static void delete_attr(attr_t *attr); @@ -115,6 +116,7 @@ static hubbub_tree_handler tree_handler = { add_attributes, set_quirks_mode, NULL, + complete_script, NULL }; @@ -814,6 +816,13 @@ hubbub_error set_quirks_mode(void *ctx, hubbub_quirks_mode mode) return HUBBUB_OK; } +hubbub_error complete_script(void *ctx, void *script) +{ + UNUSED(ctx); + UNUSED(script); + + return HUBBUB_OK; +} /*** Serialising bits ***/ -- cgit v1.2.3