diff options
author | Vicent Martà <tanoku@gmail.com> | 2012-04-22 11:34:12 -0700 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2012-04-22 11:34:12 -0700 |
commit | 7dbbf4d7f21b5859e24a03c6176a666edb8ef9a9 (patch) | |
tree | 56cccb01b27895de1fee64d9d63d140fdde039de /include/git2 | |
parent | 69a4bc1988fc242bd0d310781c865cce5481a0e6 (diff) | |
parent | 8c327228fdb0bcf130961362b14fec0e9a63c89a (diff) | |
download | libgit2-7dbbf4d7f21b5859e24a03c6176a666edb8ef9a9.tar.gz |
Merge pull request #636 from csware/WIN32-fixes
Win32 fixes
Diffstat (limited to 'include/git2')
-rw-r--r-- | include/git2/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/common.h b/include/git2/common.h index 170ef340d..a66f9c380 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -51,7 +51,7 @@ # define GIT_FORMAT_PRINTF(a,b) /* empty */ #endif -#if (defined(_WIN32) || defined(_WIN64)) && !defined(__CYGWIN__) +#if (defined(_WIN32)) && !defined(__CYGWIN__) #define GIT_WIN32 1 #endif |