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>2012-02-23 06:23:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 06:23:42 +0400
commitc8b53d2aaf7ee4d07736cf842ca385e0311f3c53 (patch)
tree2feabb1078d838a001be6a32dcf7e9f00bebf70f /source/blender/imbuf
parent53fece44cf08e730bba8b8581f8bd02361f37930 (diff)
code style cleanup, no functional changes.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/scaling.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/imbuf/intern/scaling.c b/source/blender/imbuf/intern/scaling.c
index 4ee4aa218da..a7188248d58 100644
--- a/source/blender/imbuf/intern/scaling.c
+++ b/source/blender/imbuf/intern/scaling.c
@@ -143,10 +143,10 @@ struct ImBuf *IMB_double_fast_x(struct ImBuf *ibuf1)
*dest++ = col;
}
if (do_float) {
- destf[0]= destf[4] =p1f[0];
- destf[1]= destf[5] =p1f[1];
- destf[2]= destf[6] =p1f[2];
- destf[3]= destf[7] =p1f[3];
+ destf[0]= destf[4] = p1f[0];
+ destf[1]= destf[5] = p1f[1];
+ destf[2]= destf[6] = p1f[2];
+ destf[3]= destf[7] = p1f[3];
destf+= 8;
p1f+= 4;
}