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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-09-15 08:57:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-15 08:57:51 +0400
commitabce099804046237034c671d528005364aff0d72 (patch)
tree5991f46cc488b513d994668086da9106c53273ab /source
parentf9d9459e3f86a662364a08b473a8f0faa46db5a6 (diff)
code cleanup: quiet some windows warnings.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenloader/intern/readfile.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 683e751b6b9..3935546bf58 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -589,11 +589,7 @@ static void switch_endian_bh8(BHead8 *bhead)
static void bh4_from_bh8(BHead *bhead, BHead8 *bhead8, int do_endian_swap)
{
BHead4 *bhead4 = (BHead4 *) bhead;
-#if defined(WIN32) && !defined(FREE_WINDOWS)
- __int64 old;
-#else
- long long old;
-#endif
+ int64_t old;
bhead4->code = bhead8->code;
bhead4->len = bhead8->len;