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:
authorErwin Coumans <blender@erwincoumans.com>2005-07-27 13:47:08 +0400
committerErwin Coumans <blender@erwincoumans.com>2005-07-27 13:47:08 +0400
commit8f15f9805aa006ab7b66aa150d3774e37f28e701 (patch)
treedfa7d346c8234cc06fc62be15e16d30cad415d13 /source/blender/blenlib
parent411123b2502388c9082886be48db93836ceacea8 (diff)
got some "_1400 <= _MSC_VER" wrong, should be "_1400 < _MSC_VER"
Lets hope gcc doesn't define this :)
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index c3562900739..5123098e522 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -393,7 +393,7 @@ void BLI_adddirstrings()
else if(num1) sprintf(files[num].size, "%15d", num1);
else sprintf(files[num].size, "0");
-#if 1400 <= _MSC_VER
+#if 1400 >= _MSC_VER
//visual studio 8 crashes on 'R', todo: check for replacement
strftime(datum, 32, "%d-%b-%y ", tm);
#else