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>2012-03-06 16:51:17 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-06 16:51:17 +0400
commit3882f7cde740ee0fd74b0da3ef7f6044d894df71 (patch)
treec82afd5d7a0cb445152bdab0b01761bdfb9d1bc9 /source/blender/blenkernel/intern/depsgraph.c
parent91c2aa7b95a7681ec839c5f8fd91a89980bab99f (diff)
quiet some warnings and fix build error with strict casting rules.
Diffstat (limited to 'source/blender/blenkernel/intern/depsgraph.c')
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index eca0c36c49c..9cd21cfd125 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -2597,7 +2597,7 @@ static void dag_id_flush_update(Scene *sce, ID *id)
MovieClip *clip = object_get_movieclip(sce, sce->camera, 1);
if(clip)
- dag_id_flush_update(sce, clip);
+ dag_id_flush_update(sce, &clip->id);
}
/* update editors */