summaryrefslogtreecommitdiff
path: root/src/node.c
diff options
context:
space:
mode:
authorKevin Wojniak <kainjow@kainjow.com>2015-08-10 09:53:46 -0700
committerKevin Wojniak <kainjow@kainjow.com>2015-08-10 09:53:46 -0700
commit59bcd222c3ef1a64045e27db24ffddeb99ee29d4 (patch)
treee6693373d39137c3b2e66ea205c55670d02bf282 /src/node.c
parent7baf9297f4f2e368c7c91ac76e16e88902987ec6 (diff)
Remove need to disable MSVC warning 4800
Diffstat (limited to 'src/node.c')
-rw-r--r--src/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node.c b/src/node.c
index ad12d63..c5f4553 100644
--- a/src/node.c
+++ b/src/node.c
@@ -426,7 +426,7 @@ int cmark_node_set_list_tight(cmark_node *node, int tight) {
}
if (node->type == CMARK_NODE_LIST) {
- node->as.list.tight = tight;
+ node->as.list.tight = tight == 1;
return 1;
} else {
return 0;