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>2014-04-15 07:11:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-15 07:11:48 +0400
commitea610e655cd8b8f9fb97f0a9a4fc5fd46418bd9e (patch)
treec1a3582f1167f778bf5845e64e127c0560b0c42e /source/blender/makesrna/intern/rna_mesh.c
parent3cf39fc72a36bab1c5b82ae96cffe7dd01ce7260 (diff)
Style cleanup: C & pep8
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index 99c35bdcff2..42f316ee208 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -424,7 +424,7 @@ static void rna_MeshTessFace_split_normals_get(PointerRNA *ptr, float *values)
while (i--) zero_v3(&values[i * 3]);
}
else {
- while (i--) normal_short_to_float_v3(&values[i * 3], (const short*)(*vec)[i]);
+ while (i--) normal_short_to_float_v3(&values[i * 3], (const short *)(*vec)[i]);
}
}