Skip to content

Commit d1032f2

Browse files
Update src/node.c
Co-authored-by: Phil Turnbull <[email protected]>
1 parent 420c20a commit d1032f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/node.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ static void S_node_unlink(cmark_node *node);
99

1010
#define NODE_MEM(node) cmark_node_mem(node)
1111

12-
cmark_node__internal_flags CMARK_NODE__OPEN = 0;
13-
cmark_node__internal_flags CMARK_NODE__LAST_LINE_BLANK = 0;
14-
cmark_node__internal_flags CMARK_NODE__LAST_LINE_CHECKED = 0;
12+
cmark_node__internal_flags CMARK_NODE__OPEN;
13+
cmark_node__internal_flags CMARK_NODE__LAST_LINE_BLANK;
14+
cmark_node__internal_flags CMARK_NODE__LAST_LINE_CHECKED;
1515

1616
void cmark_register_node_flag(cmark_node__internal_flags *flags) {
1717
static uint8_t shift = 0;

0 commit comments

Comments
 (0)