diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-03-23 01:58:18 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-03-23 01:58:18 +0200 |
commit | 7c80c19e1dffb4421f91913bc79b9cb7596634a4 (patch) | |
tree | 0b71f23d18f706d4b8a76e7afb55f0aa20102027 /include/git2 | |
parent | a8375f532204f4c0c70a3f937b47000b61669725 (diff) | |
download | libgit2-7c80c19e1dffb4421f91913bc79b9cb7596634a4.tar.gz |
Fix compilation in MinGW
Diffstat (limited to 'include/git2')
-rw-r--r-- | include/git2/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/types.h b/include/git2/types.h index db09f3842..88f6b7d55 100644 --- a/include/git2/types.h +++ b/include/git2/types.h @@ -57,7 +57,7 @@ typedef __time64_t git_time_t; #elif defined(__MINGW32__) typedef off64_t git_off_t; -typedef time64_t git_time_t; +typedef __time64_t git_time_t; #else /* POSIX */ |