Merge pull request #447 from csware/fix-win64-build

fix build for x64
This commit is contained in:
Vicent Martí 2011-10-08 21:18:09 -07:00
commit 5a1d2b2a17

View File

@ -64,7 +64,7 @@
# define GIT_FORMAT_PRINTF(a,b) /* empty */ # define GIT_FORMAT_PRINTF(a,b) /* empty */
#endif #endif
#if defined(_WIN32) && !defined(__CYGWIN__) #if (defined(_WIN32) || defined(_WIN64)) && !defined(__CYGWIN__)
#define GIT_WIN32 1 #define GIT_WIN32 1
#endif #endif