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-01-12 15:27:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-12 15:27:55 +0400
commitfc39e895e945d5125ede6b6a5157f1160eec1fc5 (patch)
tree27bc75b46ae0a58ea8cec0025901a53bbc5fd715 /source/blender/bmesh/intern/bmesh_interp.c
parent62aa004c25572fceb44ffdff37dd20119b81ca02 (diff)
Style Cleanup: whitespace
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_interp.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_interp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/bmesh/intern/bmesh_interp.c b/source/blender/bmesh/intern/bmesh_interp.c
index 70d1d4c81df..182826b58bf 100644
--- a/source/blender/bmesh/intern/bmesh_interp.c
+++ b/source/blender/bmesh/intern/bmesh_interp.c
@@ -776,7 +776,7 @@ void BM_data_layer_add(BMesh *bm, CustomData *data, int type)
CustomData olddata;
olddata = *data;
- olddata.layers = (olddata.layers) ? MEM_dupallocN(olddata.layers): NULL;
+ olddata.layers = (olddata.layers) ? MEM_dupallocN(olddata.layers) : NULL;
/* the pool is now owned by olddata and must not be shared */
data->pool = NULL;
@@ -792,7 +792,7 @@ void BM_data_layer_add_named(BMesh *bm, CustomData *data, int type, const char *
CustomData olddata;
olddata = *data;
- olddata.layers = (olddata.layers) ? MEM_dupallocN(olddata.layers): NULL;
+ olddata.layers = (olddata.layers) ? MEM_dupallocN(olddata.layers) : NULL;
/* the pool is now owned by olddata and must not be shared */
data->pool = NULL;
@@ -809,7 +809,7 @@ void BM_data_layer_free(BMesh *bm, CustomData *data, int type)
bool has_layer;
olddata = *data;
- olddata.layers = (olddata.layers) ? MEM_dupallocN(olddata.layers): NULL;
+ olddata.layers = (olddata.layers) ? MEM_dupallocN(olddata.layers) : NULL;
/* the pool is now owned by olddata and must not be shared */
data->pool = NULL;
@@ -828,7 +828,7 @@ void BM_data_layer_free_n(BMesh *bm, CustomData *data, int type, int n)
bool has_layer;
olddata = *data;
- olddata.layers = (olddata.layers) ? MEM_dupallocN(olddata.layers): NULL;
+ olddata.layers = (olddata.layers) ? MEM_dupallocN(olddata.layers) : NULL;
/* the pool is now owned by olddata and must not be shared */
data->pool = NULL;