[ioquake3] 80/136: Use stdint.h on Visual C if >= Visual Studio 2010.

Simon McVittie smcv at debian.org
Thu Jun 15 09:09:12 UTC 2017


This is an automated email from the git hooks/post-receive script.

smcv pushed a commit to branch debian/master
in repository ioquake3.

commit b5c54ec0190aaf47c6667286d3efeecfdbe13333
Author: Ryan C. Gordon <icculus at icculus.org>
Date:   Fri Jun 2 01:31:45 2017 -0400

    Use stdint.h on Visual C if >= Visual Studio 2010.
---
 code/autoupdater/autoupdater.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/code/autoupdater/autoupdater.c b/code/autoupdater/autoupdater.c
index ed631e3..3a2d17b 100644
--- a/code/autoupdater/autoupdater.c
+++ b/code/autoupdater/autoupdater.c
@@ -8,7 +8,7 @@ is licensed until the GPLv2. Do not mingle code, please!
 #include <string.h>
 #include <stdarg.h>
 
-#ifdef _MSC_VER
+#if defined(_MSC_VER) && (_MSC_VER < 1600)
 typedef __int64 int64_t;
 #else
 #include <stdint.h>

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/ioquake3.git



More information about the Pkg-games-commits mailing list