Fix a typo in the libisofs printing function.

This commit is contained in:
Dave 2007-04-13 20:38:38 +00:00
parent 9ac0344838
commit 7ba96957e4
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}