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>2019-06-12 01:16:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-12 02:07:03 +0300
commit96708701abdb0688dfbbc5c97134a0ff45b2f09d (patch)
treec57735c024d40dc0f4fe37a07a194c20b9e74236 /source/blender/editors/armature/armature_utils.c
parentd93a7290e5063be31c7c6af9f0496182658f42d2 (diff)
Cleanup: unused vars
Diffstat (limited to 'source/blender/editors/armature/armature_utils.c')
-rw-r--r--source/blender/editors/armature/armature_utils.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/editors/armature/armature_utils.c b/source/blender/editors/armature/armature_utils.c
index c67a031317c..5d424594229 100644
--- a/source/blender/editors/armature/armature_utils.c
+++ b/source/blender/editors/armature/armature_utils.c
@@ -429,9 +429,7 @@ void ED_armature_ebone_transform_mirror_update(bArmature *arm, EditBone *ebo, bo
void ED_armature_edit_transform_mirror_update(Object *obedit)
{
bArmature *arm = obedit->data;
- EditBone *ebo, *eboflip;
-
- for (ebo = arm->edbo->first; ebo; ebo = ebo->next) {
+ for (EditBone *ebo = arm->edbo->first; ebo; ebo = ebo->next) {
ED_armature_ebone_transform_mirror_update(arm, ebo, true);
}
}