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
commit9baf8c39fbf018648345016adcec6ba3d0a6542d (patch)
tree388ebc9e45fa324c55b7a1ab5cc6e7e74a096dac /examples
parent10b04081b3bcc336ded5dc1bc7728181564f174d (diff)
downloadlibdom-9baf8c39fbf018648345016adcec6ba3d0a6542d.tar.gz
libdom-9baf8c39fbf018648345016adcec6ba3d0a6542d.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;