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:
authorRichard Antalik <richardantalik@gmail.com>2020-12-02 12:07:56 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-12-02 12:13:45 +0300
commit67353ae630cc888336782ecb490004c5493d4273 (patch)
treeff393e3f92ea390945e0308dfa1ea314f13ed404 /source/blender
parent2afc508eb4bd1fb325ce726eed62ed1d82b25833 (diff)
Fix build error on builds without audaspace
This was caused by incorrect argument type in dummy function `rna_Sequences_new_sound()` Caused by 13ca11ac52a8
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer_api.c b/source/blender/makesrna/intern/rna_sequencer_api.c
index 5d17beba901..6f97098900e 100644
--- a/source/blender/makesrna/intern/rna_sequencer_api.c
+++ b/source/blender/makesrna/intern/rna_sequencer_api.c
@@ -375,7 +375,7 @@ static Sequence *rna_Sequences_new_sound(ID *id,
}
# else /* WITH_AUDASPACE */
static Sequence *rna_Sequences_new_sound(ID *UNUSED(id),
- Editing *UNUSED(seqbase),
+ ListBase *UNUSED(seqbase),
Main *UNUSED(bmain),
ReportList *reports,
const char *UNUSED(name),