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>2011-08-30 13:50:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-30 13:50:31 +0400
commit27ec8d5043f544685001aab3552b9b4b56bc1e1a (patch)
tree2daae712833a6951ae0b3ccf73010202a3b9611d /source/blender/blenlib/intern/graph.c
parentc7dcbdb830b3db615df1722922d0d40660ac3b5e (diff)
fix for some warnings with the recent merge, also tag unused args.
Diffstat (limited to 'source/blender/blenlib/intern/graph.c')
-rw-r--r--source/blender/blenlib/intern/graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/graph.c b/source/blender/blenlib/intern/graph.c
index 51e639d1c75..2e26f4bd9c9 100644
--- a/source/blender/blenlib/intern/graph.c
+++ b/source/blender/blenlib/intern/graph.c
@@ -714,7 +714,7 @@ static void handleRadialSymmetry(BGraph *graph, BNode *root_node, int depth, flo
int dispatch = 0;
int last = i - 1;
- if (fabs(ring[first].arc->length - ring[i].arc->length) > limit)
+ if (fabsf(ring[first].arc->length - ring[i].arc->length) > limit)
{
dispatch = 1;
}