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/avi/intern/avi_rgb32.c')
-rw-r--r--source/blender/avi/intern/avi_rgb32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/avi/intern/avi_rgb32.c b/source/blender/avi/intern/avi_rgb32.c
index 051fdba1cd2..f5f48b9eeb4 100644
--- a/source/blender/avi/intern/avi_rgb32.c
+++ b/source/blender/avi/intern/avi_rgb32.c
@@ -87,7 +87,7 @@ void *avi_converter_to_rgb32(AviMovie *movie, int stream, unsigned char *buffer,
to = buf; from = buffer;
size_t i = (size_t)movie->header->Height * (size_t)movie->header->Width;
-
+
while (i--) {
memcpy(to, from, 3);
to += 4; from += 3;