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-04-25 20:35:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-25 20:35:57 +0400
commited684977006c072d826127a253495b1d02f6f6e7 (patch)
tree9d7cc1d3553706945d30c6ebce2bef2f3cbcdac3 /source/blender/blenlib/intern/storage.c
parent8df319f5e67c19fce61d38d838bfe19f71dd413f (diff)
style cleanup
Diffstat (limited to 'source/blender/blenlib/intern/storage.c')
-rw-r--r--source/blender/blenlib/intern/storage.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 66e749011c3..6b45c6f1cb3 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -620,22 +620,22 @@ void BLI_file_free_lines(LinkNode *lines)
bool BLI_file_older(const char *file1, const char *file2)
{
#ifdef WIN32
- #ifndef __MINGW32__
+#ifndef __MINGW32__
struct _stat st1, st2;
- #else
+#else
struct _stati64 st1, st2;
- #endif
+#endif
UTF16_ENCODE(file1);
UTF16_ENCODE(file2);
- #ifndef __MINGW32__
+#ifndef __MINGW32__
if (_wstat(file1_16, &st1)) return false;
if (_wstat(file2_16, &st2)) return false;
- #else
+#else
if (_wstati64(file1_16, &st1)) return false;
if (_wstati64(file2_16, &st2)) return false;
- #endif
+#endif
UTF16_UN_ENCODE(file2);