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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-09-28 11:13:56 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-09-28 11:13:56 +0300
commit89264d8c40293697abbe28200e6c6c1c2e2e2960 (patch)
treec005cfeabfd361a49d78fcd299538c86c0c68203 /source/blender/editors/armature/pose_edit.c
parentc72770d1cb9158fcf3f463d788722d089845b955 (diff)
Make struct initialization happy for CLang
Diffstat (limited to 'source/blender/editors/armature/pose_edit.c')
-rw-r--r--source/blender/editors/armature/pose_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/armature/pose_edit.c b/source/blender/editors/armature/pose_edit.c
index 5e5988bd69b..136f17156e1 100644
--- a/source/blender/editors/armature/pose_edit.c
+++ b/source/blender/editors/armature/pose_edit.c
@@ -208,7 +208,7 @@ void ED_pose_recalculate_paths(bContext *C, Scene *scene, Object *ob, bool curre
/* Override depsgraph with a filtered, simpler copy */
if (!current_frame_only && G.debug_value != -1) {
TIMEIT_START(filter_pose_depsgraph);
- DEG_FilterQuery query = {0};
+ DEG_FilterQuery query = {{0}};
DEG_FilterTarget *dft_ob = MEM_callocN(sizeof(DEG_FilterTarget), "DEG_FilterTarget");
dft_ob->id = &ob->id;