diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-11-13 10:06:43 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-11-13 10:06:43 -0800 |
commit | e5fd42248067b4e8f29a9c2ed9d224ded4526c24 (patch) | |
tree | 9e795179ea25aacc99c1e8de5a500b3485ffd10c /src/ast.c | |
parent | 91642ceee7a2a2c05d9561c0e22b2f15111ac603 (diff) |
Rename cmark_free_nodes -> cmark_free_blocks.
Diffstat (limited to 'src/ast.c')
-rw-r--r-- | src/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ #include "references.h" // Free a node_block list and any children. -void cmark_free_nodes(node_block *e) +void cmark_free_blocks(node_block *e) { node_block * next; while (e != NULL) { |