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>2020-03-05 00:33:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-05 00:38:41 +0300
commit1da8ed2a9737088a29f8782b290ba237bd0e813c (patch)
tree9bcb8424c7d58ae7a082e747e95f5aad1fac72d7 /source/blender/editors/object/object_relations.c
parent2fb4de1f8c1b3117da47aff39972d92cc078dd29 (diff)
Cleanup: redundant casts
Diffstat (limited to 'source/blender/editors/object/object_relations.c')
-rw-r--r--source/blender/editors/object/object_relations.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 13844a4f7b4..006e1ebc6be 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -2260,7 +2260,7 @@ static int make_local_exec(bContext *C, wmOperator *op)
}
}
- matarar = (Material ***)BKE_object_material_array_p(ob);
+ matarar = BKE_object_material_array_p(ob);
if (matarar) {
for (a = 0; a < ob->totcol; a++) {
ma = (*matarar)[a];