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>2016-03-24 09:56:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-24 09:56:30 +0300
commit2a9e3c2bdb705d1ef834403d91d33045aa364785 (patch)
treec57fe54e9bebcdad890430cacc29e83f110449a7 /source/blender/editors/animation/keyframing.c
parent75849b099f28cfcecd578122e2bfd227468eacf5 (diff)
Fix incorrect arg type
Diffstat (limited to 'source/blender/editors/animation/keyframing.c')
-rw-r--r--source/blender/editors/animation/keyframing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c
index 0b0a24a24ef..a50924ccefa 100644
--- a/source/blender/editors/animation/keyframing.c
+++ b/source/blender/editors/animation/keyframing.c
@@ -1777,7 +1777,7 @@ static int insert_key_button_exec(bContext *C, wmOperator *op)
else if (UI_but_flag_is_set(but, UI_BUT_DRIVEN)) {
/* Driven property - Find driver */
FCurve *fcu;
- int driven, special;
+ bool driven, special;
fcu = rna_get_fcurve_context_ui(C, &ptr, prop, index, NULL, NULL, &driven, &special);