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-12 04:50:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-12 04:50:40 +0400
commit502ddd312879316c13f66d84c4ffe0927df53a06 (patch)
tree51a18bef238f47e385d909c591e98d2023086854 /source/blender/blenlib/intern/storage.c
parent742c1cb3284fed8a9fdef1cb899a3eaaf896cd41 (diff)
code cleanup: warnings and style.
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 3665b957c41..24d4f7cdfe3 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -520,7 +520,7 @@ int BLI_exists(const char *name)
/* change error mode so user does not get a "no disk in drive" popup
* when looking for a file on an empty CD/DVD drive */
- old_error_mode = SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOOPENFILEERRORBOX);
+ old_error_mode = SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
#ifndef __MINGW32__
res = _wstat(tmp_16, &st);