X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fwin32_apply.c;h=ffcd3a1fc7a4c675216194b1ab5c270963cdf184;hb=4765a514142e8e3cc86cc38323d14a9b39860162;hp=b326e182a5eb788f8827c31ec0ca5f8675052299;hpb=0efd94409732107bc4140364fc8fe76ef9236c1e;p=wimlib diff --git a/src/win32_apply.c b/src/win32_apply.c index b326e182..ffcd3a1f 100644 --- a/src/win32_apply.c +++ b/src/win32_apply.c @@ -2465,11 +2465,11 @@ do_warnings(const struct win32_apply_ctx *ctx) } } -static uint64_t +static u64 count_dentries(const struct list_head *dentry_list) { const struct list_head *cur; - uint64_t count = 0; + u64 count = 0; list_for_each(cur, dentry_list) count++; @@ -2483,7 +2483,7 @@ win32_extract(struct list_head *dentry_list, struct apply_ctx *_ctx) { int ret; struct win32_apply_ctx *ctx = (struct win32_apply_ctx *)_ctx; - uint64_t dentry_count; + u64 dentry_count; ret = prepare_target(dentry_list, ctx); if (ret)