Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Herrmann <shadowrom@me.com>2014-03-09 03:25:08 +0400
committerJuergen Herrmann <shadowrom@me.com>2014-03-09 03:25:08 +0400
commit5559302369ae6a17e9ad5f3c8bd9ea6eb318d87f (patch)
treeb87db634a859b33aa0ddda978cb2b7f0c8a70c26 /source/blender/imbuf/intern/util.c
parent645aa96795b0ecc8f041fe20682d9b7b236009e4 (diff)
Cleanup some useless/unneeded #ifdefs for MSVC2013.
Diffstat (limited to 'source/blender/imbuf/intern/util.c')
-rw-r--r--source/blender/imbuf/intern/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index 7efd0223368..c1cc3f0a1db 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -252,7 +252,7 @@ static int isqtime(const char *name)
#ifdef WITH_FFMPEG
-#ifdef _MSC_VER
+#if defined(_MSC_VER) && _MSC_VER < 1800
#define va_copy(dst, src) ((dst) = (src))
#endif