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>2015-05-18 09:26:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-18 09:27:08 +0300
commit3dfce097e49b8dd443ecd364ff57d5fadc4a2c8c (patch)
tree8a14e5f8a5628a0bd7ed5af0015c36ea1a7603e1 /source/blender/imbuf/intern/util.c
parent924f31e54f59e13007b75f9388ef4bd089f847b2 (diff)
Cleanup: use const for Imbuf file types
Diffstat (limited to 'source/blender/imbuf/intern/util.c')
-rw-r--r--source/blender/imbuf/intern/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index 3fee6688014..77962d43470 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -186,7 +186,7 @@ int IMB_ispic_type(const char *name)
#define HEADER_SIZE 64
unsigned char buf[HEADER_SIZE];
- ImFileType *type;
+ const ImFileType *type;
BLI_stat_t st;
int fp;
@@ -442,7 +442,7 @@ bool IMB_isanim(const char *filename)
bool IMB_isfloat(ImBuf *ibuf)
{
- ImFileType *type;
+ const ImFileType *type;
for (type = IMB_FILE_TYPES; type < IMB_FILE_TYPES_LAST; type++) {
if (type->ftype(type, ibuf)) {