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-02-22 04:14:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-22 04:14:15 +0400
commitb7fa08f88a260bbd9008c11875cb14052d6c7eb1 (patch)
tree6b4a90e6fdbf6727f224a9130082b2dc027a5088 /source/blender/modifiers/intern
parent1a79abdad2443ff9f12e7efd95ee78a264a9d60a (diff)
Code cleanup: style
Diffstat (limited to 'source/blender/modifiers/intern')
-rw-r--r--source/blender/modifiers/intern/MOD_boolean_util.c2
-rw-r--r--source/blender/modifiers/intern/MOD_wireframe.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_boolean_util.c b/source/blender/modifiers/intern/MOD_boolean_util.c
index d68bf508e31..50ea8f18d3a 100644
--- a/source/blender/modifiers/intern/MOD_boolean_util.c
+++ b/source/blender/modifiers/intern/MOD_boolean_util.c
@@ -457,7 +457,7 @@ static void setMPolyMaterial(ExportMeshData *export_data,
* otherwise fallback to first material (material with index=0).
*/
if (!BLI_ghash_haskey(material_hash, orig_mat)) {
- int a, mat_nr;;
+ int a, mat_nr;
mat_nr = 0;
for (a = 0; a < export_data->ob_left->totcol; a++) {
diff --git a/source/blender/modifiers/intern/MOD_wireframe.c b/source/blender/modifiers/intern/MOD_wireframe.c
index 3ebd9bd38fd..474a7550533 100644
--- a/source/blender/modifiers/intern/MOD_wireframe.c
+++ b/source/blender/modifiers/intern/MOD_wireframe.c
@@ -80,7 +80,7 @@ static DerivedMesh *WireframeModifier_do( WireframeModifierData *wmd, Object *ob
DerivedMesh *result;
BMesh *bm;
- const int defgrp_index = defgroup_name_index(ob, wmd->defgrp_name);;
+ const int defgrp_index = defgroup_name_index(ob, wmd->defgrp_name);
bm = DM_to_bmesh(dm, true);