diff --git a/libisofs/tree.c b/libisofs/tree.c index 57aa0df..8e6f6cd 100755 --- a/libisofs/tree.c +++ b/libisofs/tree.c @@ -192,7 +192,7 @@ iso_tree_print(const struct iso_tree_node *root, int spaces) memset(sp, ' ', spaces); sp[spaces] = '\0'; - printf("%s%sn", sp, root->name); + printf("%s%s\n", sp, root->name); for (i=0; i < root->nchildren; i++) { iso_tree_print(root->children[i], spaces+2); }