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-03-20 08:27:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-20 08:27:14 +0400
commitbe116242d43c58ddf08b5d28379cdb0a26b6bb5c (patch)
tree5c8775dd5cc2c379962b09c7f4fe471d39a07d34 /source/blender/python/bmesh/bmesh_py_types_meshdata.c
parent3427749090a427f29a1eecbe7f921a8e8007002c (diff)
style cleanup
Diffstat (limited to 'source/blender/python/bmesh/bmesh_py_types_meshdata.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_meshdata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types_meshdata.c b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
index e9841301201..7fffb205f2b 100644
--- a/source/blender/python/bmesh/bmesh_py_types_meshdata.c
+++ b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
@@ -183,7 +183,7 @@ static int mathutils_bmloopcol_set(BaseMathObject *bmo, int UNUSED(subtype))
static int mathutils_bmloopcol_get_index(BaseMathObject *bmo, int subtype, int UNUSED(index))
{
/* lazy, avoid repeteing the case statement */
- if(mathutils_bmloopcol_get(bmo, subtype) == -1)
+ if (mathutils_bmloopcol_get(bmo, subtype) == -1)
return -1;
return 0;
}
@@ -193,7 +193,7 @@ static int mathutils_bmloopcol_set_index(BaseMathObject *bmo, int subtype, int i
const float f = bmo->data[index];
/* lazy, avoid repeteing the case statement */
- if(mathutils_bmloopcol_get(bmo, subtype) == -1)
+ if (mathutils_bmloopcol_get(bmo, subtype) == -1)
return -1;
bmo->data[index] = f;