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/imbuf/intern/iff.c')
-rw-r--r--source/blender/imbuf/intern/iff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/iff.c b/source/blender/imbuf/intern/iff.c
index 251799c9126..790f8344207 100644
--- a/source/blender/imbuf/intern/iff.c
+++ b/source/blender/imbuf/intern/iff.c
@@ -204,7 +204,7 @@ unsigned short imb_update_iff(int file, int code)
filelen -= 8;
if (buf[0] == code) break;
- skip = BIG_LONG(buf[1]) + 1 & ~1;
+ skip = (BIG_LONG(buf[1]) + 1) & ~1;
filelen -= skip;
lseek(file, skip, 1);
}