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:
authorTon Roosendaal <ton@blender.org>2008-09-20 16:28:01 +0400
committerTon Roosendaal <ton@blender.org>2008-09-20 16:28:01 +0400
commit63f10e6b550796307ccc22099efa9a7326290604 (patch)
treefe75722fadfa7be6b8a4fa081dc37cb9dadd7559
parent9b9edad6b6fb4db3f393ef408921f8411b588814 (diff)
Patch 17403, small gcc warning fixes.
-rw-r--r--release/plugins/sequence/dnr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/plugins/sequence/dnr.c b/release/plugins/sequence/dnr.c
index 7e7c168750e..b6a99de0622 100644
--- a/release/plugins/sequence/dnr.c
+++ b/release/plugins/sequence/dnr.c
@@ -110,9 +110,9 @@ static void doit(unsigned char * src_, unsigned char * dst_,
unsigned char * dst = dst_;
while (count--) {
- *dst++ = table[(*src++ << 8) | *dst];
- *dst++ = table[(*src++ << 8) | *dst];
- *dst++ = table[(*src++ << 8) | *dst];
+ *dst = table[(*src++ << 8) | *dst]; dst++;
+ *dst = table[(*src++ << 8) | *dst]; dst++;
+ *dst = table[(*src++ << 8) | *dst]; dst++;
*dst++ = *src++;
}