summaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2014-11-17 20:13:20 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-17 21:43:46 -0800
commit24643bde1d2c79cc512242379868efadf653c1da (patch)
treeba859dea0838032ff5c1f7b6377f47fa74969e2e /src/ast.h
parentb66573cb303f9174a6b86138a7c8782eeb03b3ad (diff)
Switch cmark_node_block over to cmark_node
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast.h b/src/ast.h
index baeaa3f..61c52bc 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -89,8 +89,8 @@ struct cmark_node_block {
struct cmark_doc_parser {
struct cmark_reference_map *refmap;
- struct cmark_node_block* root;
- struct cmark_node_block* current;
+ struct cmark_node* root;
+ struct cmark_node* current;
int line_number;
cmark_strbuf *curline;
};