summaryrefslogtreecommitdiff
path: root/test/testutils/load.c
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2012-08-05 22:39:17 +0100
committerJohn-Mark Bell <jmb@netsurf-browser.org>2012-08-05 22:39:17 +0100
commitba2d58bb356c9ac16bcac8f02ff4d1c6882f86c8 (patch)
tree21ab1056650371056847be75130ab53437dacc99 /test/testutils/load.c
parent93501a764570049afce4794c0fc64a374df677a7 (diff)
downloadlibdom-ba2d58bb356c9ac16bcac8f02ff4d1c6882f86c8.tar.gz
libdom-ba2d58bb356c9ac16bcac8f02ff4d1c6882f86c8.tar.bz2
Move document out parameter after in parameters.
Diffstat (limited to 'test/testutils/load.c')
-rw-r--r--test/testutils/load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutils/load.c b/test/testutils/load.c
index 322afe5..e072f10 100644
--- a/test/testutils/load.c
+++ b/test/testutils/load.c
@@ -103,7 +103,7 @@ dom_document *load_html(const char *file, bool willBeModified)
UNUSED(willBeModified);
- parser = dom_hubbub_parser_create(NULL, true, false, &ret, mymsg, NULL, NULL);
+ parser = dom_hubbub_parser_create(NULL, true, false, mymsg, NULL, NULL, &ret);
if (parser == NULL) {
fprintf(stderr, "Can't create Hubbub Parser\n");
return NULL;