From b9d0daef6d7a71c598eee3fc77f351f01cc534aa Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Mon, 31 May 2010 14:42:21 -0400 Subject: [PATCH] Use int64_t here to match archive_windows.h SVN-Revision: 2433 --- libarchive/archive_windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libarchive/archive_windows.c b/libarchive/archive_windows.c index 7b7d1ba61..a6c8c8ab5 100644 --- a/libarchive/archive_windows.c +++ b/libarchive/archive_windows.c @@ -370,7 +370,7 @@ __la_link(const char *src, const char *dst) } int -__la_ftruncate(int fd, off_t length) +__la_ftruncate(int fd, int64_t length) { LARGE_INTEGER distance; HANDLE handle; -- 2.47.3