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:
authorCampbell Barton <ideasman42@gmail.com>2013-03-05 11:39:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-05 11:39:52 +0400
commitdc4be68cb98e3eadd441975e9340c81a155befd3 (patch)
treeaa637752032a39e3d9d9f6aae73df9f98c2b8c90 /source/blender/blenlib/intern/storage.c
parent02caa057641218fef2bcc168719ac08c86f55505 (diff)
fix for building with msvc
Diffstat (limited to 'source/blender/blenlib/intern/storage.c')
-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 c65123d39a4..6692ff8091c 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -265,7 +265,7 @@ static void bli_builddir(struct BuildDirCtx *dir_ctx, const char *dirname)
{
wchar_t *name_16 = alloc_utf16_from_8(fullname, 0);
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
- _wstat64(name_16, &filec->s);
+ _wstat64(name_16, &file->s);
#elif defined(__MINGW32__)
_stati64(fullname, &file->s);
#endif