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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-12-12 11:10:03 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-12-12 11:10:03 +0400
commit61616b0b8898b9736a64341a4a6fea46ad8ea802 (patch)
tree654bb4827b4e018ae7ac50dbc7cef17b9e996145 /source/blender/blenkernel/intern/movieclip.c
parentab127c12d4d1f9db10435a904ec184560449938a (diff)
Code cleanup: indent preprocessor directives inside #ifdef
Diffstat (limited to 'source/blender/blenkernel/intern/movieclip.c')
-rw-r--r--source/blender/blenkernel/intern/movieclip.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c
index d9630a7343d..fb489bffa66 100644
--- a/source/blender/blenkernel/intern/movieclip.c
+++ b/source/blender/blenkernel/intern/movieclip.c
@@ -34,16 +34,16 @@
#include <fcntl.h>
#ifndef WIN32
-#include <unistd.h>
+# include <unistd.h>
#else
-#include <io.h>
+# include <io.h>
#endif
#include <time.h>
#ifdef _WIN32
-#define open _open
-#define close _close
+# define open _open
+# define close _close
#endif
#include "MEM_guardedalloc.h"
@@ -82,7 +82,7 @@
#include "IMB_moviecache.h"
#ifdef WITH_OPENEXR
-#include "intern/openexr/openexr_multi.h"
+# include "intern/openexr/openexr_multi.h"
#endif
#include "NOD_composite.h"