From e78e8fae5c0fe00327512b1f0b9ffd6ef696d29b Mon Sep 17 00:00:00 2001 From: Jacques Germishuys Date: Fri, 20 Nov 2015 20:22:38 +0200 Subject: Make stat.st_size a __int64 not a uint64_t --- src/win32/win32-compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/win32/win32-compat.h b/src/win32/win32-compat.h index 8b4070df7..d3a5b68a3 100644 --- a/src/win32/win32-compat.h +++ b/src/win32/win32-compat.h @@ -28,7 +28,7 @@ struct p_stat { short st_uid; short st_gid; _dev_t st_rdev; - uint64_t st_size; + __int64 st_size; struct timespec st_atim; struct timespec st_mtim; struct timespec st_ctim; -- cgit v1.2.1