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-04-29 19:47:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-29 19:47:02 +0400
commite701f9b67010279db02ceb51f7d08078cb34170a (patch)
tree22134b33527f2d3a1b05f4265422bf5d98420bbc /source/blender/avi/intern/endian.c
parent038c12895f50a97607dd372cb0780c55eb38fe22 (diff)
style cleanup: whitespace / commas
Diffstat (limited to 'source/blender/avi/intern/endian.c')
-rw-r--r--source/blender/avi/intern/endian.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/avi/intern/endian.c b/source/blender/avi/intern/endian.c
index adcc7e8750a..eb9e586cfb0 100644
--- a/source/blender/avi/intern/endian.c
+++ b/source/blender/avi/intern/endian.c
@@ -49,7 +49,7 @@
#ifdef __BIG_ENDIAN__
static void invert (int *num)
{
- int new=0,i,j;
+ int new=0, i, j;
for (j=0; j < 4; j++) {
for (i=0; i<8; i++) {
@@ -63,7 +63,7 @@ static void invert (int *num)
static void sinvert (short int *num)
{
short int new=0;
- int i,j;
+ int i, j;
for (j=0; j < 2; j++) {
for (i=0; i<8; i++) {