summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJacques Germishuys <jacquesg@striata.com>2015-11-20 20:22:38 +0200
committerJacques Germishuys <jacquesg@striata.com>2015-11-21 14:41:15 +0200
commite78e8fae5c0fe00327512b1f0b9ffd6ef696d29b (patch)
tree8a175e66e5ec0702cb83c88b33e7c955e3004afe /src
parent69d1494873ee170ae33c37943c75bf7fa1c9d89d (diff)
downloadlibgit2-e78e8fae5c0fe00327512b1f0b9ffd6ef696d29b.tar.gz
Make stat.st_size a __int64 not a uint64_t
Diffstat (limited to 'src')
-rw-r--r--src/win32/win32-compat.h2
1 files changed, 1 insertions, 1 deletions
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;