]> wimlib.net Git - wimlib/blobdiff - src/ntfs-3g_apply.c
win32_apply: Stricter checks of resource format for WOF external backing
[wimlib] / src / ntfs-3g_apply.c
index e38ad2885f7883d3d87892c44e120c023e37187c..690c2207708f9d6cfc32a92650801d1f87571fbd 100644 (file)
@@ -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++;