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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-24 16:54:52 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-24 16:54:52 +0400
commita301d2c898ed353aa6902a4893574ab24b7a2b4e (patch)
tree282030fddad66afa1216ecb467205c3136c6b743
parent715fa82769a2d239bdf73701719ae354ca527c59 (diff)
Remove the unsigned, since totbits is signed too.
-rw-r--r--source/blender/blenkernel/intern/ipo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/ipo.c b/source/blender/blenkernel/intern/ipo.c
index a8e0aa81156..5ed6beaf376 100644
--- a/source/blender/blenkernel/intern/ipo.c
+++ b/source/blender/blenkernel/intern/ipo.c
@@ -1175,7 +1175,7 @@ static void icu_to_fcurves (ID *id, ListBase *groups, ListBase *list, IpoCurve *
abp= adrcode_bitmaps_to_paths(icu->blocktype, icu->adrcode, &totbits);
if (abp && totbits) {
FCurve *fcurve;
- unsigned int b;
+ int b;
if (G.f & G_DEBUG) printf("\tconvert bitflag ipocurve, totbits = %d \n", totbits);