fix
This commit is contained in:
parent
37ae57aff6
commit
178fe4aca7
3 changed files with 36 additions and 29 deletions
|
|
@ -57,15 +57,15 @@ int main(int argc, char** argv) {
|
|||
n = h->pre;
|
||||
if(n != NULL) {
|
||||
while(n != NULL) {
|
||||
// recursive(h, n, INDENT);
|
||||
// recursive(h, n, INDENT);
|
||||
n = n->next;
|
||||
}
|
||||
}
|
||||
|
||||
// if(h->root != NULL) recursive(h, h->root, INDENT);
|
||||
// if(h->root != NULL) recursive(h, h->root, INDENT);
|
||||
|
||||
xl_node_t** r = xl_get_path(h->root, "book.title");
|
||||
int j;
|
||||
int j;
|
||||
for(j = 0; r[j] != NULL; j++) recursive(h, r[j], INDENT);
|
||||
free(r);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue