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-08-18 10:04:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-08-18 10:05:06 +0400
commit4795b61c1b4a112a4c9ee2637d5936988e19515a (patch)
treee53fc7ac42452a1a24ab7754d80500be8c636450 /source/blender/modifiers/intern/MOD_solidify.c
parentbaea85b4498315bc085712626511119e05aed237 (diff)
Cleanup: assert / warn
Diffstat (limited to 'source/blender/modifiers/intern/MOD_solidify.c')
-rw-r--r--source/blender/modifiers/intern/MOD_solidify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_solidify.c b/source/blender/modifiers/intern/MOD_solidify.c
index 86115d9937a..0447f3b7067 100644
--- a/source/blender/modifiers/intern/MOD_solidify.c
+++ b/source/blender/modifiers/intern/MOD_solidify.c
@@ -398,7 +398,7 @@ static DerivedMesh *applyModifier(
for (i = 0, j = (int)numEdges; i < numEdges; i++) {
if (!ELEM(edge_users[i], INVALID_UNUSED, INVALID_PAIR)) {
- MEdge* ed_src, *ed_dst;
+ MEdge *ed_src, *ed_dst;
DM_copy_edge_data(dm, result, i, j, 1);
ed_src = &medge[i];