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>2010-03-03 16:59:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-03-03 16:59:57 +0300
commitf09efddcda8f83b5cbee31fccb63ac0864bad82a (patch)
treed8916354ed3d68e835910e6bee1446399b0d6b34 /source/blender/editors/animation/keyframes_general.c
parentca7b6e2cd03c51b59b72dccda6fb5acb38bc8e07 (diff)
fix for minor errors/warnings
Diffstat (limited to 'source/blender/editors/animation/keyframes_general.c')
-rw-r--r--source/blender/editors/animation/keyframes_general.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/keyframes_general.c b/source/blender/editors/animation/keyframes_general.c
index ae2c617bc80..1784c6ef32c 100644
--- a/source/blender/editors/animation/keyframes_general.c
+++ b/source/blender/editors/animation/keyframes_general.c
@@ -374,7 +374,7 @@ void sample_fcurve (FCurve *fcu)
int i, n, nIndex;
if(fcu->bezt==NULL) /* ignore baked */
- return NULL;
+ return;
/* find selected keyframes... once pair has been found, add keyframes */
for (i=0, bezt=fcu->bezt; i < fcu->totvert; i++, bezt++) {