]> wimlib.net Git - wimlib/blobdiff - include/wimlib/inode_table.h
inode_table: remove unused num_entries member
[wimlib] / include / wimlib / inode_table.h
index 01f371e0ac8ceef8d1f68994ed6ec351bc860e9d..9e8485a1b2502a2890394f70398b8099ef81e4d8 100644 (file)
@@ -10,10 +10,9 @@ struct wim_dentry;
  * the case of reading a WIM image), or both an inode number and a device number
  * (in the case of adding files to a WIM image).  Also contains an extra list to
  * hold inodes for which no additional hard link detection is desired.  In both
- * cases the inodes are linked by i_hlist.  */
+ * cases the inodes are linked by i_hlist_node.  */
 struct wim_inode_table {
        struct hlist_head *array;
-       size_t num_entries;
        size_t capacity;
        struct hlist_head extra_inodes;
 };