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
commitf5f3e8e99e6085ee61373af500645bb202045f9b (patch)
treec743138dee41593341c57f8ccd9a00422743b304 /examples
parentb8adea2079845494bb7c8c6946bdaadc57a4d271 (diff)
downloadlibdom-f5f3e8e99e6085ee61373af500645bb202045f9b.tar.gz
libdom-f5f3e8e99e6085ee61373af500645bb202045f9b.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)