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>2018-09-19 03:29:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-19 03:29:57 +0300
commit345c34826296907d85b4b367a830ff4f73ab293f (patch)
tree54d7a03449dc65e7dadc22ebff7541ef1f439165 /source/blender/blenkernel/intern/subdiv_ccg.c
parent69aac13524374d62fee5a99139ba74ed535ea767 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenkernel/intern/subdiv_ccg.c')
-rw-r--r--source/blender/blenkernel/intern/subdiv_ccg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/subdiv_ccg.c b/source/blender/blenkernel/intern/subdiv_ccg.c
index 6744579d5c6..7d5c67d4393 100644
--- a/source/blender/blenkernel/intern/subdiv_ccg.c
+++ b/source/blender/blenkernel/intern/subdiv_ccg.c
@@ -158,7 +158,7 @@ static void subdiv_ccg_alloc_elements(SubdivCCG *subdiv_ccg,
subdiv_ccg->faces = MEM_calloc_arrayN(
num_faces, sizeof(SubdivCCGFace), "Subdiv CCG faces");
subdiv_ccg->grid_faces = MEM_calloc_arrayN(
- num_grids, sizeof(SubdivCCGFace*), "Subdiv CCG grid faces");
+ num_grids, sizeof(SubdivCCGFace *), "Subdiv CCG grid faces");
}
}
@@ -447,7 +447,7 @@ typedef struct RecalcInnerNormalsTLSData {
*/
static void subdiv_ccg_recalc_inner_face_normals(
RecalcInnerNormalsData *data,
- RecalcInnerNormalsTLSData *tls,
+ RecalcInnerNormalsTLSData *tls,
const int grid_index)
{
SubdivCCG *subdiv_ccg = data->subdiv_ccg;