From 796226247812ee509b3645d4cb4a984cfbc2517e Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Tue, 10 Jan 2023 22:56:14 -0800 Subject: [PATCH] wimsplit: use uint64_t for part_size Reported at https://wimlib.net/forums/viewtopic.php?t=640 --- programs/imagex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/imagex.c b/programs/imagex.c index 809836cd..1766ad41 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -4006,7 +4006,7 @@ imagex_split(int argc, tchar **argv, int cmd) int c; int open_flags = 0; int write_flags = 0; - unsigned long part_size; + uint64_t part_size; tchar *tmp; int ret; WIMStruct *wim; -- 2.43.0