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@blender.org>2021-05-07 13:39:11 +0300
committerSergey Sharybin <sergey@blender.org>2021-05-07 13:39:11 +0300
commit6b46e9e5245ff26137f06c26693b54edeed75d96 (patch)
tree4971c4254252762e879ca18a035d927c8067a351 /source/blender/editors/space_sequencer/sequencer_select.c
parent700fe73560fb4fef9238910d0b49782d4e44795a (diff)
Fix strict compiler warning in sequencer code
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_select.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_select.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c
index ec5ec5c8ce0..d89daf168a4 100644
--- a/source/blender/editors/space_sequencer/sequencer_select.c
+++ b/source/blender/editors/space_sequencer/sequencer_select.c
@@ -1622,9 +1622,9 @@ static bool select_grouped_time_overlap(Editing *ed, Sequence *actseq)
}
/* Query all effect strips that are directly or indirectly connected to seq_reference. */
-void query_strip_effect_chain(Sequence *seq_reference,
- ListBase *seqbase,
- SeqCollection *collection)
+static void query_strip_effect_chain(Sequence *seq_reference,
+ ListBase *seqbase,
+ SeqCollection *collection)
{
if (!SEQ_collection_append_strip(seq_reference, collection)) {
return; /* Strip is already in set, so all effects connected to it are as well. */