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-02-27 02:38:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-27 02:38:49 +0400
commit3ba37b65a32541ac594183d45c0939ee95bb098d (patch)
tree7e9015c177d0e0d679c1dca3ad35c2ed230c6d37 /source/blender/bmesh/operators/bmo_mesh_conv.c
parent5df6869b379401874fb2cae0c1e33a58aaab8786 (diff)
style cleanup
Diffstat (limited to 'source/blender/bmesh/operators/bmo_mesh_conv.c')
-rw-r--r--source/blender/bmesh/operators/bmo_mesh_conv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/bmesh/operators/bmo_mesh_conv.c b/source/blender/bmesh/operators/bmo_mesh_conv.c
index b5807f9ba8d..b41a6f823b0 100644
--- a/source/blender/bmesh/operators/bmo_mesh_conv.c
+++ b/source/blender/bmesh/operators/bmo_mesh_conv.c
@@ -134,7 +134,7 @@ void mesh_to_bmesh_exec(BMesh *bm, BMOperator *op)
}
}
else if (actkey) {
- printf("shapekey<->mesh mismatch!\n");
+ printf("shapekey <-> mesh mismatch!\n");
}
CustomData_bmesh_init_pool(&bm->vdata, bm_mesh_allocsize_default[0]);
@@ -897,9 +897,9 @@ void bmesh_to_mesh_exec(BMesh *bm, BMOperator *op)
add_v3_v3(fp, ofs[i]);
}
- fp+= 3;
- ++i;
- ++mvert;
+ fp += 3;
+ i++;
+ mvert++;
eve = BM_iter_step(&iter);
}
currkey->totelem = bm->totvert;