From 5280353a5100df14ae71d066fd1580a0bd2a0bcd Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Mon, 19 Nov 2012 19:28:06 +0000 Subject: [PATCH] * Fix Windows compile. #ifdef _MSC_VER was misspelled. --- source/blender/imbuf/intern/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c index 7cd4f47af81..dc5cdf49783 100644 --- a/source/blender/imbuf/intern/util.c +++ b/source/blender/imbuf/intern/util.c @@ -228,7 +228,7 @@ static int isqtime(const char *name) #ifdef WITH_FFMPEG -#ifdef _MS_VER +#ifdef _MSC_VER #define va_copy(dst, src) ((dst) = (src)) #endif