]> wimlib.net Git - wimlib/blobdiff - src/verify.c
Rename dentry name fields
[wimlib] / src / verify.c
index 11b47600c9b8c58217c19ad1e87b74568b0a2e58..1ca5be46d57a9c3c41696e4291e2765f5346f9b1 100644 (file)
@@ -71,7 +71,7 @@ end_verify_blob(struct blob_descriptor *blob, int status, void *_ctx)
                return status;
 
        if (ctx->next_progress == progress->verify_streams.total_bytes) {
-               ctx->next_progress = ~(uint64_t)0;
+               ctx->next_progress = ~(u64)0;
                return 0;
        }
 
@@ -116,9 +116,9 @@ wimlib_verify_wim(WIMStruct *wim, int verify_flags)
        union wimlib_progress_info progress;
        struct verify_blob_list_ctx ctx;
        struct blob_descriptor *blob;
-       struct read_blob_list_callbacks cbs = {
-               .end_blob = end_verify_blob,
-               .end_blob_ctx = &ctx,
+       struct read_blob_callbacks cbs = {
+               .end_blob       = end_verify_blob,
+               .ctx            = &ctx,
        };
 
        /* Check parameters  */