X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fdentry.c;h=35a89d11e06238f98a8c5e68584dc0c291091062;hp=81a04d2b1534408e7c44580fb40c9cee991e5c86;hb=e1ec9c16b55adb6947b4d1ff46dc847430db4746;hpb=6c71ffe3bf00c347a33e7ce31458664017287abc diff --git a/src/dentry.c b/src/dentry.c index 81a04d2b..35a89d11 100644 --- a/src/dentry.c +++ b/src/dentry.c @@ -745,7 +745,7 @@ int print_dentry(struct wim_dentry *dentry, void *lookup_table) printf("Full Path (UTF-8) = \"%s\"\n", dentry->full_path_utf8); lte = inode_stream_lte(dentry->d_inode, 0, lookup_table); if (lte) { - print_lookup_table_entry(lte); + print_lookup_table_entry(lte, stdout); } else { hash = inode_stream_hash(inode, 0); if (hash) { @@ -766,8 +766,8 @@ int print_dentry(struct wim_dentry *dentry, void *lookup_table) print_hash(hash); putchar('\n'); } - print_lookup_table_entry(inode_stream_lte(inode, i + 1, - lookup_table)); + print_lookup_table_entry(inode_stream_lte(inode, i + 1, lookup_table), + stdout); } return 0; }