summaryrefslogtreecommitdiff
path: root/src/html
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2012-03-25 11:47:11 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2012-03-25 11:47:11 +0000
commit1d120d71d279b19e44ba883aa4d0077dc00a86be (patch)
tree975859022d286d54a8794803c399bea46fbb6b17 /src/html
parentc9668b63bef08512c6f5b7e8cfd8823cbd0bccdc (diff)
downloadlibdom-1d120d71d279b19e44ba883aa4d0077dc00a86be.tar.gz
libdom-1d120d71d279b19e44ba883aa4d0077dc00a86be.tar.bz2
Squash aliasing warning
svn path=/trunk/libdom/; revision=13685
Diffstat (limited to 'src/html')
-rw-r--r--src/html/html_document.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/html_document.c b/src/html/html_document.c
index 252dc24..52c6eca 100644
--- a/src/html/html_document.c
+++ b/src/html/html_document.c
@@ -216,7 +216,7 @@ dom_exception _dom_html_document_get_title(dom_html_document *doc,
return DOM_NO_ERR;
}
- exc = dom_nodelist_item(nodes, 0, &node);
+ exc = dom_nodelist_item(nodes, 0, (void *) &node);
dom_nodelist_unref(nodes);
if (exc != DOM_NO_ERR) {
return exc;