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>2019-03-18 06:13:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-18 06:13:06 +0300
commit317cb1dd6507be3e043e32eb1ddaece509bbbbb5 (patch)
tree4fca876d6b13da8cbd21ddc848f79811a3ca1796 /source/blender/imbuf/intern/cineon
parent6c0240e84a2c06af506697242e0ba42fa4998ee5 (diff)
Cleanup: style, duplicate include
Diffstat (limited to 'source/blender/imbuf/intern/cineon')
-rw-r--r--source/blender/imbuf/intern/cineon/cineonlib.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/cineon/cineonlib.c b/source/blender/imbuf/intern/cineon/cineonlib.c
index b3e08ba294b..14389a566fd 100644
--- a/source/blender/imbuf/intern/cineon/cineonlib.c
+++ b/source/blender/imbuf/intern/cineon/cineonlib.c
@@ -182,8 +182,10 @@ LogImageFile *cineonOpen(const unsigned char *byteStuff, int fromMemory, size_t
if (verbose) printf("Cineon: File is LSB.\n");
}
else {
- if (verbose) printf("Cineon: Bad magic number %lu in \"%s\".\n",
- (unsigned long)header.fileHeader.magic_num, byteStuff);
+ if (verbose) {
+ printf("Cineon: Bad magic number %lu in \"%s\".\n",
+ (unsigned long)header.fileHeader.magic_num, byteStuff);
+ }
logImageClose(cineon);
return NULL;
}