From 802476a0c64bb175c4f9122b6de09359542cb492 Mon Sep 17 00:00:00 2001 From: Dave Date: Fri, 13 Apr 2007 20:38:38 +0000 Subject: [PATCH] Fix a typo in the libisofs printing function. --- libisofs/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }