summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-02-15 18:52:34 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2012-02-15 18:52:34 +0000
commit8e73662ae32c033dd9c54bbba3fa8a39307f8988 (patch)
tree388ebc9e45fa324c55b7a1ab5cc6e7e74a096dac /examples
parent2cfbf69aec49595c35e9ee264b0e3bc6ad84a37e (diff)
downloadlibdom-8e73662ae32c033dd9c54bbba3fa8a39307f8988.tar.gz
libdom-8e73662ae32c033dd9c54bbba3fa8a39307f8988.tar.bz2
Pedantic wrap change.
svn path=/trunk/libdom/; revision=13447
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 a247186..3e52930 100644
--- a/examples/dom-structure-dump.c
+++ b/examples/dom-structure-dump.c
@@ -155,7 +155,8 @@ bool dump_dom_element_attribute(dom_node *node, char *attribute)
assert(type == DOM_ELEMENT_NODE);
/* Create a dom_string containing required attribute name. */
- exc = dom_string_create_interned((uint8_t *)attribute, strlen(attribute), &attr);
+ exc = dom_string_create_interned((uint8_t *)attribute,
+ strlen(attribute), &attr);
if (exc != DOM_NO_ERR) {
printf(" Exception raised for dom_string_create\n");
return false;