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:
authorThomas Dinges <blender@dingto.org>2012-11-19 23:28:06 +0400
committerThomas Dinges <blender@dingto.org>2012-11-19 23:28:06 +0400
commit5280353a5100df14ae71d066fd1580a0bd2a0bcd (patch)
treeaf1fd65f803117423a70fd5b52b7854b90c84700 /source/blender/imbuf/intern/util.c
parentb1904e411a1d6f923a487d8c72a842c517b5787a (diff)
* Fix Windows compile. #ifdef _MSC_VER was misspelled.
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 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