X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fextract.c;h=99320268e2a7a8af66a135cf927d93161d938363;hp=b14489379d0275e3b734e73c81e4af02fb7a2a70;hb=8eb500e74f1508c4722df217fb60bdf4710fbff6;hpb=ef4edd92f933f235a4ca106491168f317c764ab8 diff --git a/src/extract.c b/src/extract.c index b1448937..99320268 100644 --- a/src/extract.c +++ b/src/extract.c @@ -96,7 +96,7 @@ do_file_extract_progress(struct apply_ctx *ctx, enum wimlib_progress_msg msg) } static int -start_file_phase(struct apply_ctx *ctx, uint64_t end_file_count, enum wimlib_progress_msg msg) +start_file_phase(struct apply_ctx *ctx, u64 end_file_count, enum wimlib_progress_msg msg) { ctx->progress.extract.current_file_count = 0; ctx->progress.extract.end_file_count = end_file_count; @@ -104,13 +104,13 @@ start_file_phase(struct apply_ctx *ctx, uint64_t end_file_count, enum wimlib_pro } int -start_file_structure_phase(struct apply_ctx *ctx, uint64_t end_file_count) +start_file_structure_phase(struct apply_ctx *ctx, u64 end_file_count) { return start_file_phase(ctx, end_file_count, WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE); } int -start_file_metadata_phase(struct apply_ctx *ctx, uint64_t end_file_count) +start_file_metadata_phase(struct apply_ctx *ctx, u64 end_file_count) { return start_file_phase(ctx, end_file_count, WIMLIB_PROGRESS_MSG_EXTRACT_METADATA); }