From 15b85554808e51d3009f3742b1800620a217b149 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 14 Feb 2019 00:32:13 +0100 Subject: Use uint64_t instead of off_t for win32/MinGW compatibility --- src/ipsw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ipsw.c') diff --git a/src/ipsw.c b/src/ipsw.c index 8ca6a8f..0dfd9c0 100644 --- a/src/ipsw.c +++ b/src/ipsw.c @@ -104,7 +104,7 @@ int ipsw_is_directory(const char* ipsw) return S_ISDIR(fst.st_mode); } -int ipsw_get_file_size(const char* ipsw, const char* infile, off_t* size) +int ipsw_get_file_size(const char* ipsw, const char* infile, uint64_t* size) { ipsw_archive* archive = ipsw_open(ipsw); if (archive == NULL) { @@ -188,7 +188,7 @@ int ipsw_extract_to_file_with_progress(const char* ipsw, const char* infile, con return -1; } - off_t i, bytes = 0; + uint64_t i, bytes = 0; int count, size = BUFSIZE; double progress; for(i = zstat.size; i > 0; i -= count) { -- cgit v1.1-32-gdbae