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:
authorJeroen Bakker <jeroen@blender.org>2021-03-23 13:59:42 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-23 13:59:42 +0300
commit8cac85abfe41fdbe8286a73b94a143390a52e61c (patch)
treeee44451ea38daee70a912b7c04cb5105f1ee5fd2 /source/blender/sequencer/intern/strip_edit.c
parent36cb66384d9dfe7820e94b370530201149e67fbe (diff)
Cleanup: Silence compile warning.
Diffstat (limited to 'source/blender/sequencer/intern/strip_edit.c')
-rw-r--r--source/blender/sequencer/intern/strip_edit.c2
1 files changed, 1 insertions, 1 deletions
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)) {