From 5e56cfa958d33a2e66ef914c9b3f421cbb79e32c Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 28 Jul 2019 15:05:10 +0200 Subject: Cleanup: Fix strict compiler warning --- source/blender/blenkernel/intern/movieclip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenkernel/intern/movieclip.c') diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c index e55bb675063..f67bc419210 100644 --- a/source/blender/blenkernel/intern/movieclip.c +++ b/source/blender/blenkernel/intern/movieclip.c @@ -1773,7 +1773,7 @@ static void movieclip_selection_synchronize(MovieClip *clip_dst, const MovieClip } } -void movieclip_eval_update_reload(struct Depsgraph *depsgraph, Main *bmain, MovieClip *clip) +static void movieclip_eval_update_reload(struct Depsgraph *depsgraph, Main *bmain, MovieClip *clip) { BKE_movieclip_reload(bmain, clip); if (DEG_is_active(depsgraph)) { @@ -1782,7 +1782,7 @@ void movieclip_eval_update_reload(struct Depsgraph *depsgraph, Main *bmain, Movi } } -void movieclip_eval_update_generic(struct Depsgraph *depsgraph, MovieClip *clip) +static void movieclip_eval_update_generic(struct Depsgraph *depsgraph, MovieClip *clip) { BKE_tracking_dopesheet_tag_update(&clip->tracking); if (DEG_is_active(depsgraph)) { -- cgit v1.2.3