libtreestore
changeset 2:e1a825be0eee
typo
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 12 Apr 2014 13:50:01 +0300 |
parents | a31eae25c0e6 |
children | 48d75df3ef04 |
files | src/treestore.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/src/treestore.c Sat Apr 12 13:46:00 2014 +0300 1.2 +++ b/src/treestore.c Sat Apr 12 13:50:01 2014 +0300 1.3 @@ -352,7 +352,7 @@ 1.4 void ts_free_tree(struct ts_node *tree) 1.5 { 1.6 while(tree->child_list) { 1.7 - struct ts_tree *child = tree->child_list; 1.8 + struct ts_node *child = tree->child_list; 1.9 tree->child_list = tree->child_list->next; 1.10 ts_free_tree(child); 1.11 }