X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Finode.c;h=034b9a11f3ec1d70b58df2f3a4eef1af147b2355;hb=588b06dbb0267153119678118a9cd618bfa01c19;hp=03db2fb1d9fba62e907c600e3ac5fd081189ec28;hpb=432a323fe128bde95bb1709bf88b117ba44da998;p=wimlib diff --git a/src/inode.c b/src/inode.c index 03db2fb1..034b9a11 100644 --- a/src/inode.c +++ b/src/inode.c @@ -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; }