diff options
Diffstat (limited to 'src/print.c')
-rw-r--r-- | src/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c index ce387b4..28a173e 100644 --- a/src/print.c +++ b/src/print.c @@ -118,11 +118,11 @@ static void print_blocks(node_block* b, int indent) break; case BLOCK_LIST: data = &(b->as.list); - if (data->list_type == ordered) { + if (data->list_type == CMARK_ORDERED_LIST) { printf("list (type=ordered tight=%s start=%d delim=%s)\n", (data->tight ? "true" : "false"), data->start, - (data->delimiter == parens ? "parens" : "period")); + (data->delimiter == CMARK_PAREN_DELIM ? "parens" : "period")); } else { printf("list (type=bullet tight=%s bullet_char=%c)\n", (data->tight ? "true" : "false"), |