From 314f54eb0644a7af3f9fa88262b6c3b36104a3de Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Sun, 9 Oct 2011 05:29:57 +0200 Subject: [PATCH] fix build for x64 Signed-off-by: Sven Strickroth --- include/git2/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/git2/common.h b/include/git2/common.h index a004be99b..ef279eac1 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