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:
authorJoshua Leung <aligorith@gmail.com>2016-03-13 15:01:43 +0300
committerJoshua Leung <aligorith@gmail.com>2016-03-13 15:01:43 +0300
commit0e1b4e10a26d40fb3f8d45966c133790a26732b1 (patch)
tree4facd7d34acf45d613498771c099d9109883b0ed /source/blender/editors/animation/keyingsets.c
parent6bf9aa3f8e833df488911d6005b1683cca36c51e (diff)
Fixed some type mismatch errors, missed earlier
(CMake MSVC's output makes it really difficult to spot errors when they occur!)
Diffstat (limited to 'source/blender/editors/animation/keyingsets.c')
-rw-r--r--source/blender/editors/animation/keyingsets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c
index 060f66f81e4..8071805fd63 100644
--- a/source/blender/editors/animation/keyingsets.c
+++ b/source/blender/editors/animation/keyingsets.c
@@ -955,9 +955,9 @@ int ANIM_apply_keyingset(bContext *C, ListBase *dsources, bAction *act, KeyingSe
ReportList *reports = CTX_wm_reports(C);
KS_Path *ksp;
const short base_kflags = ANIM_get_keyframing_flags(scene, 1);
- short kflag = 0, success = 0;
const char *groupname = NULL;
- const char *keytype = scene->toolsettings->keyframe_type;
+ short kflag = 0, success = 0;
+ char keytype = scene->toolsettings->keyframe_type;
/* sanity checks */
if (ks == NULL)