]> wimlib.net Git - wimlib/blobdiff - src/hardlink.c
print_inode_dentries(): Fix
[wimlib] / src / hardlink.c
index b2d330930c8230c4706b9b26b114c3331c860f23..3022cadfc47069340e5ae86c67fe1a06dd85bd10 100644 (file)
@@ -159,11 +159,6 @@ inode_ref_streams(struct wim_inode *inode)
        }
 }
 
-void
-inode_add_link(struct wim_inode *inode, struct wim_dentry *dentry)
-{
-}
-
 /* Given a directory entry with the name @name for the file with the inode
  * number @ino and device number @devno, create a new WIM dentry with an
  * associated inode, where the inode is shared if an inode with the same @ino
@@ -202,7 +197,7 @@ print_inode_dentries(const struct wim_inode *inode)
 {
        struct wim_dentry *dentry;
        inode_for_each_dentry(dentry, inode)
-               tprintf(T("%"TS), dentry_full_path(dentry));
+               tfprintf(stderr, T("%"TS"\n"), dentry_full_path(dentry));
 }
 #endif