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:
authorBastien Montagne <montagne29@wanadoo.fr>2011-09-26 17:24:42 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-09-26 17:24:42 +0400
commit3cff99c9a17aa20273c48afe45266c45608b118c (patch)
tree6a75cb4efb5ffd6fe45903a24635e1602e30659c /source/blender/editors/armature
parentc23bc0338295cc328534e2a045eee343e248ee69 (diff)
Commented and tagged some unused vars (gcc warnings...). Also fixed some uninitialized warnings.
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/reeb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/armature/reeb.c b/source/blender/editors/armature/reeb.c
index 04501243acb..78c9e601d87 100644
--- a/source/blender/editors/armature/reeb.c
+++ b/source/blender/editors/armature/reeb.c
@@ -1353,11 +1353,11 @@ static int joinSubgraphsEnds(ReebGraph *rg, float threshold, int nb_subgraphs)
if (end_node && start_node)
{
- ReebArc *start_arc, *end_arc;
+ ReebArc *start_arc /* , *end_arc */ /* UNUSED */;
int merging = 0;
start_arc = start_node->arcs[0];
- end_arc = end_node->arcs[0];
+ /* end_arc = end_node->arcs[0]; */ /* UNUSED */
if (start_arc->tail == start_node)
{