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>2014-06-26 09:46:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-26 09:46:42 +0400
commita4d9c8f579a4ba2b66f2f5b8b7bbd6be9c1d4cda (patch)
tree7025cc2659b74b550743f67d9b4d11521f6a8978 /source/blender/editors/curve
parente3e56971ebe494ac499675f00bd891f2d9cadaa3 (diff)
Code cleanup: casts, dead assignment & arg order.
Diffstat (limited to 'source/blender/editors/curve')
-rw-r--r--source/blender/editors/curve/editcurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c
index 6c3e477b398..7b78b255a55 100644
--- a/source/blender/editors/curve/editcurve.c
+++ b/source/blender/editors/curve/editcurve.c
@@ -1042,7 +1042,7 @@ static void curve_rename_fcurves(Curve *cu, ListBase *orig_curves)
{
int nu_index = 0, a, pt_index;
EditNurb *editnurb = cu->editnurb;
- Nurb *nu = editnurb->nurbs.first;
+ Nurb *nu;
CVKeyIndex *keyIndex;
char rna_path[64], orig_rna_path[64];
AnimData *adt = BKE_animdata_from_id(&cu->id);