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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-07-11 13:47:13 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-07-11 13:47:13 +0400
commite645068aa0e60916cf6e556235608fafb1f46c78 (patch)
treea63ae78b21fd030c6681a493435cf147c9e5afbc /source/blender/avi/AVI_avi.h
parent9fb2e5dde70bd971dabfdf3b1099d92241dc96ed (diff)
Fix #27928: avi raw writing failure, after earlier bugfix for big file sizes.
Diffstat (limited to 'source/blender/avi/AVI_avi.h')
-rw-r--r--source/blender/avi/AVI_avi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/avi/AVI_avi.h b/source/blender/avi/AVI_avi.h
index 1446971a8ac..97dc12f57d8 100644
--- a/source/blender/avi/AVI_avi.h
+++ b/source/blender/avi/AVI_avi.h
@@ -60,7 +60,7 @@
typedef struct _AviChunk {
int fcc;
- int64_t size;
+ int size;
} AviChunk;
typedef struct _AviList {