summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-12-22 14:16:52 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-12-22 14:16:52 +0000
commit16d0ec5f28356115e89f0eb43473d4e931371edf (patch)
treec743138dee41593341c57f8ccd9a00422743b304 /examples
parentbe8b6fd2ad772d49a99cccf9f1c7244747f1ac18 (diff)
downloadlibdom-16d0ec5f28356115e89f0eb43473d4e931371edf.tar.gz
libdom-16d0ec5f28356115e89f0eb43473d4e931371edf.tar.bz2
Fix comparison of interned and non-interned dom strings. Constify dom string data accessers.
svn path=/trunk/libdom/; revision=13327
Diffstat (limited to 'examples')
-rw-r--r--examples/dom-structure-dump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/dom-structure-dump.c b/examples/dom-structure-dump.c
index bd73799..91cfda2 100644
--- a/examples/dom-structure-dump.c
+++ b/examples/dom-structure-dump.c
@@ -133,7 +133,8 @@ dom_document *create_doc_dom_from_file(char *file)
/**
* Dump attribute/value for an element node
*
- * \param node The element node to dump attribute details for
+ * \param node The element node to dump attribute details for
+ * \param attribute The attribute to dump
* \return true on success, or false on error
*/
bool dump_dom_element_attribute(dom_node_internal *node, char *attribute)