diff options
-rw-r--r-- | src/content-parser.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/content-parser.h b/src/content-parser.h index a0e403c..c1eaf2c 100644 --- a/src/content-parser.h +++ b/src/content-parser.h @@ -46,10 +46,9 @@ typedef struct _blogc_content_node_t { blogc_content_block_type_t block_type; blogc_content_inline_type_t inline_type; } type; - union { - struct _blogc_content_node_t *block; - char *content; - } child; + char *content; + struct _blogc_content_node_t *child; + struct _blogc_content_node_t *next; sb_trie_t *parameters; } blogc_content_node_t; |