From e5fd42248067b4e8f29a9c2ed9d224ded4526c24 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 13 Nov 2014 10:06:43 -0800 Subject: Rename cmark_free_nodes -> cmark_free_blocks. --- src/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ast.c') diff --git a/src/ast.c b/src/ast.c index 1622568..8ccf184 100644 --- a/src/ast.c +++ b/src/ast.c @@ -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) { -- cgit v1.2.3