summaryrefslogtreecommitdiff
path: root/utils/libdom.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-12 23:27:13 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-12 23:27:13 +0000
commit9fde3502b659d3858cd1978d2c6535c57efbe924 (patch)
tree05b81ded322deb7fb0b7c1b7fa4d88bbbff193fc /utils/libdom.c
parente8277f2954229822fae75cb9b062b90a95c37a71 (diff)
downloadnetsurf-9fde3502b659d3858cd1978d2c6535c57efbe924.tar.gz
netsurf-9fde3502b659d3858cd1978d2c6535c57efbe924.tar.bz2
doxygen cleanups in utils
Diffstat (limited to 'utils/libdom.c')
-rw-r--r--utils/libdom.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/utils/libdom.c b/utils/libdom.c
index d6b26b46b..a996e98bf 100644
--- a/utils/libdom.c
+++ b/utils/libdom.c
@@ -314,9 +314,10 @@ static void ignore_dom_msg(uint32_t severity, void *ctx, const char *msg, ...)
/**
* Dump attribute/value for an element node
*
- * \param node The element node to dump attribute details for
- * \param attribute The attribute to dump
- * \return true on success, or false on error
+ * \param node The element node to dump attribute details for
+ * \param f file handle to dump to.
+ * \param attribute The attribute to dump
+ * \return true on success, or false on error
*/
static bool dump_dom_element_attribute(dom_node *node, FILE *f, const char *attribute)
{
@@ -376,6 +377,7 @@ static bool dump_dom_element_attribute(dom_node *node, FILE *f, const char *attr
* Print a line in a DOM structure dump for an element
*
* \param node The node to dump
+ * \param f file handle to dump to.
* \param depth The node's depth
* \return true on success, or false on error
*/