yml: don't print out final node(s)

This commit is contained in:
Daniel Eklöf 2018-12-17 20:26:02 +01:00
parent f1cd75ecb9
commit f1f3190767

4
yml.c
View file

@ -326,9 +326,9 @@ yml_load(FILE *yml)
yaml_parser_delete(&yaml);
print_node(root);
//print_node(root);
post_process(root);
print_node(root);
//print_node(root);
return root;
}