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:
Diffstat (limited to 'source/blender/python/generic/imbuf_py_api.c')
-rw-r--r--source/blender/python/generic/imbuf_py_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/generic/imbuf_py_api.c b/source/blender/python/generic/imbuf_py_api.c
index 32fe522b84d..8a02638786d 100644
--- a/source/blender/python/generic/imbuf_py_api.c
+++ b/source/blender/python/generic/imbuf_py_api.c
@@ -22,9 +22,9 @@
#include <Python.h>
-#include "BLI_utildefines.h"
-#include "BLI_string.h"
#include "BLI_rect.h"
+#include "BLI_string.h"
+#include "BLI_utildefines.h"
#include "py_capi_utils.h"
@@ -36,9 +36,9 @@
#include "../../imbuf/IMB_imbuf_types.h"
/* File IO */
-#include <fcntl.h>
-#include <errno.h>
#include "BLI_fileops.h"
+#include <errno.h>
+#include <fcntl.h>
static PyObject *Py_ImBuf_CreatePyObject(ImBuf *ibuf);