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>2019-07-28 16:05:10 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-07-28 16:05:10 +0300
commit5e56cfa958d33a2e66ef914c9b3f421cbb79e32c (patch)
treec0eb7571ed97a615f59f1dcaeb8c0aa4992b2930 /source/blender/blenkernel/intern/movieclip.c
parent2cce65de9695943c5189b74d1c3a480d2b72889f (diff)
Cleanup: Fix strict compiler warning
Diffstat (limited to 'source/blender/blenkernel/intern/movieclip.c')
-rw-r--r--source/blender/blenkernel/intern/movieclip.c4
1 files changed, 2 insertions, 2 deletions
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)) {