X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fntfs-3g_apply.c;h=690c2207708f9d6cfc32a92650801d1f87571fbd;hb=44153b02cd98bddef5b7057bda7dd2d4aca5a5b3;hp=e38ad2885f7883d3d87892c44e120c023e37187c;hpb=869f809bfeeac57735d5d761d70bb28f12d29a66;p=wimlib diff --git a/src/ntfs-3g_apply.c b/src/ntfs-3g_apply.c index e38ad288..690c2207 100644 --- a/src/ntfs-3g_apply.c +++ b/src/ntfs-3g_apply.c @@ -873,7 +873,7 @@ ntfs_3g_end_extract_blob(struct blob_descriptor *blob, int status, void *_ctx) "data on \"%s\"", dentry_full_path( inode_first_extraction_dentry(inode))); - ret = WIMLIB_ERR_NTFS_3G; + ret = WIMLIB_ERR_SET_REPARSE_DATA; goto out; } } @@ -886,11 +886,11 @@ out: return ret; } -static uint64_t +static u64 ntfs_3g_count_dentries(const struct list_head *dentry_list) { const struct wim_dentry *dentry; - uint64_t count = 0; + u64 count = 0; list_for_each_entry(dentry, dentry_list, d_extraction_list_node) { count++;