summaryrefslogtreecommitdiff
path: root/include/dom
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2017-02-04 10:36:57 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2017-02-04 10:38:32 +0000
commit51ab1cdf25e80490023577c82cc35b68335eff5e (patch)
tree72bf8d1687a78f80558baac579431d4e8181c6e6 /include/dom
parent25f17fdecaa895478a9b2e3e59b044ac5a0e3c4d (diff)
downloadlibdom-51ab1cdf25e80490023577c82cc35b68335eff5e.tar.gz
libdom-51ab1cdf25e80490023577c82cc35b68335eff5e.tar.bz2
Change dom node type count to last value plus one.
Diffstat (limited to 'include/dom')
-rw-r--r--include/dom/core/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dom/core/node.h b/include/dom/core/node.h
index 35be6f0..ba273af 100644
--- a/include/dom/core/node.h
+++ b/include/dom/core/node.h
@@ -68,7 +68,7 @@ typedef enum {
DOM_NOTATION_NODE = 12,
/* And a count of the number of node types */
- DOM_NODE_TYPE_COUNT = DOM_NOTATION_NODE
+ DOM_NODE_TYPE_COUNT
} dom_node_type;
typedef struct dom_node_internal dom_node_internal;