[Bf-blender-cvs] [8cac85abfe4] master: Cleanup: Silence compile warning.

Jeroen Bakker noreply at git.blender.org
Tue Mar 23 12:00:02 CET 2021


Commit: 8cac85abfe41fdbe8286a73b94a143390a52e61c
Author: Jeroen Bakker
Date:   Tue Mar 23 11:59:42 2021 +0100
Branches: master
https://developer.blender.org/rB8cac85abfe41fdbe8286a73b94a143390a52e61c

Cleanup: Silence compile warning.

===================================================================

M	source/blender/sequencer/intern/strip_edit.c

===================================================================

diff --git a/source/blender/sequencer/intern/strip_edit.c b/source/blender/sequencer/intern/strip_edit.c
index 4a042ee2598..4a27fb3a087 100644
--- a/source/blender/sequencer/intern/strip_edit.c
+++ b/source/blender/sequencer/intern/strip_edit.c
@@ -204,7 +204,7 @@ void SEQ_edit_remove_flagged_sequences(Scene *scene, ListBase *seqbase)
   }
 }
 
-bool seq_exists_in_seqbase(Sequence *seq, ListBase *seqbase)
+static bool seq_exists_in_seqbase(Sequence *seq, ListBase *seqbase)
 {
   LISTBASE_FOREACH (Sequence *, seq_test, seqbase) {
     if (seq_test->type == SEQ_TYPE_META && seq_exists_in_seqbase(seq, &seq_test->seqbase)) {



More information about the Bf-blender-cvs mailing list