diff options
author | Sven Strickroth <email@cs-ware.de> | 2011-10-09 05:29:57 +0200 |
---|---|---|
committer | Sven Strickroth <email@cs-ware.de> | 2011-10-09 05:29:57 +0200 |
commit | 314f54eb0644a7af3f9fa88262b6c3b36104a3de (patch) | |
tree | 7d5d622f7607a597198969b17b50e3325e1ddd98 /include/git2/common.h | |
parent | 3eaf34f4c602b9e155e2f4c6ae26c9250ac37d50 (diff) | |
download | libgit2-314f54eb0644a7af3f9fa88262b6c3b36104a3de.tar.gz |
fix build for x64
Signed-off-by: Sven Strickroth <email@cs-ware.de>
Diffstat (limited to 'include/git2/common.h')
-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 a004be99..ef279eac 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -64,7 +64,7 @@ # define GIT_FORMAT_PRINTF(a,b) /* empty */ #endif -#if defined(_WIN32) && !defined(__CYGWIN__) +#if (defined(_WIN32) || defined(_WIN64)) && !defined(__CYGWIN__) #define GIT_WIN32 1 #endif |