X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Finode.c;h=034b9a11f3ec1d70b58df2f3a4eef1af147b2355;hp=217d9d0460f2013f0e9bb060b3277172f0efadd9;hb=5260cf0b5649fc25b9d69a97f9604a3be257e13e;hpb=4802321d3a42c3116fddc9ea41a878d031defd61 diff --git a/src/inode.c b/src/inode.c index 217d9d04..034b9a11 100644 --- a/src/inode.c +++ b/src/inode.c @@ -85,8 +85,8 @@ free_inode(struct wim_inode *inode) FREE(inode->i_streams); if (inode->i_extra) FREE(inode->i_extra); - if (!hlist_unhashed(&inode->i_hlist)) - hlist_del(&inode->i_hlist); + if (!hlist_unhashed(&inode->i_hlist_node)) + hlist_del(&inode->i_hlist_node); FREE(inode); } @@ -267,7 +267,7 @@ inode_add_stream(struct wim_inode *inode, int stream_type, { if (inode->i_num_streams >= 0xFFFF) { ERROR("Inode has too many streams! Path=\"%"TS"\"", - inode_first_full_path(inode)); + inode_any_full_path(inode)); errno = EFBIG; return NULL; } @@ -492,7 +492,7 @@ blob_not_found_error(const struct wim_inode *inode, const u8 *hash) ERROR("\"%"TS"\": blob not found\n" " SHA-1 message digest of missing blob:\n" " %"TS"", - inode_first_full_path(inode), hashstr); + inode_any_full_path(inode), hashstr); } return WIMLIB_ERR_RESOURCE_NOT_FOUND; }