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:
authorNathan Letwory <nathan@letworyinteractive.com>2009-11-03 02:55:04 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2009-11-03 02:55:04 +0300
commit46487ad59eb9811c863c080e78b265900ed3e4ec (patch)
tree4728bbf0d83c59ccb567bf6fcd409a5d32683b8f /intern/moto/include/MT_assert.h
parent5ff7cbd2f9426476dcedd25404804c60eae1f02b (diff)
== COLLADA ==
* fix win64 build and add proper library usage for COLLADA 64bit. Update also lib/win64 (r24263).
Diffstat (limited to 'intern/moto/include/MT_assert.h')
-rw-r--r--intern/moto/include/MT_assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/moto/include/MT_assert.h b/intern/moto/include/MT_assert.h
index 22f6b6a555c..b8f18fc52ff 100644
--- a/intern/moto/include/MT_assert.h
+++ b/intern/moto/include/MT_assert.h
@@ -76,7 +76,7 @@ abort();
#endif /* breakpoint */
-#if defined(WIN32) && !defined(__GNUC__)
+#if defined(_WIN32) && !defined(__GNUC__)
#define MT_assert(predicate) assert(predicate)
#else