From 0e1b4e10a26d40fb3f8d45966c133790a26732b1 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 14 Mar 2016 01:01:43 +1300 Subject: Fixed some type mismatch errors, missed earlier (CMake MSVC's output makes it really difficult to spot errors when they occur!) --- source/blender/editors/animation/keyingsets.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/animation/keyingsets.c') 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) -- cgit v1.2.3