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-11-06 22:53:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-07 00:43:56 +0300
commit87c1893f8dffdaf4abad0b736be55c55c34cbb6e (patch)
tree145546aff32ff73647849a6004d4c6351e348f78 /source/blender/blenkernel/intern/constraint.c
parentfbce8f27c81aca8cbbfc592a10116b5a177b9750 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenkernel/intern/constraint.c')
-rw-r--r--source/blender/blenkernel/intern/constraint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index cc94e87c747..dccc959b4ea 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -5041,10 +5041,10 @@ static bConstraint *constraint_list_find_from_target(ListBase *constraints, bCon
ListBase *targets = NULL;
if (con->type == CONSTRAINT_TYPE_PYTHON) {
- targets = &((bPythonConstraint*)con->data)->targets;
+ targets = &((bPythonConstraint *)con->data)->targets;
}
else if (con->type == CONSTRAINT_TYPE_ARMATURE) {
- targets = &((bArmatureConstraint*)con->data)->targets;
+ targets = &((bArmatureConstraint *)con->data)->targets;
}
if (targets && BLI_findindex(targets, tgt) != -1) {