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:
authorJacques Lucke <jacques@blender.org>2021-05-07 16:57:35 +0300
committerJacques Lucke <jacques@blender.org>2021-05-07 16:57:35 +0300
commitbcfdbbf4b4b88f63593998c2cffa0a0b12b93053 (patch)
tree8f0bcf6c6c7aa25c597c69f788e7734eda8391b1 /source/blender/sequencer
parent94838ba6619e881be237e90a3897d950e61da654 (diff)
Cleanup: clang tidy
readability-inconsistent-declaration-parameter-name
Diffstat (limited to 'source/blender/sequencer')
-rw-r--r--source/blender/sequencer/SEQ_iterator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/sequencer/SEQ_iterator.h b/source/blender/sequencer/SEQ_iterator.h
index dfea5997582..b015bb6133a 100644
--- a/source/blender/sequencer/SEQ_iterator.h
+++ b/source/blender/sequencer/SEQ_iterator.h
@@ -71,7 +71,7 @@ struct Sequence *SEQ_iterator_yield(SeqIterator *iterator);
SeqCollection *SEQ_collection_create(void);
bool SEQ_collection_append_strip(struct Sequence *seq, SeqCollection *data);
-void SEQ_collection_free(SeqCollection *data);
+void SEQ_collection_free(SeqCollection *collection);
void SEQ_collection_merge(SeqCollection *collection_dst, SeqCollection *collection_src);
void SEQ_collection_expand(struct ListBase *seqbase,
SeqCollection *collection,