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>2021-03-02 19:47:21 +0300
committerRichard Antalik <richardantalik@gmail.com>2021-03-02 19:47:21 +0300
commit9c604ab0ca4d6f0264b3c253526827c72276ffe8 (patch)
treea0cf30304767a8984802bc243e9188284940cc08
parent82e7032477283a9bf2747ee607da7c5ba3eb8986 (diff)
Fix Fuild error with lite build
With audaspace disabled, function SEQ_add_sound_strip was declared as prototype.
-rw-r--r--source/blender/sequencer/intern/strip_add.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/sequencer/intern/strip_add.c b/source/blender/sequencer/intern/strip_add.c
index 1aa0e32a363..54e71ff0698 100644
--- a/source/blender/sequencer/intern/strip_add.c
+++ b/source/blender/sequencer/intern/strip_add.c
@@ -406,7 +406,10 @@ Sequence *SEQ_add_sound_strip(Main *bmain, Scene *scene, ListBase *seqbase, SeqL
Sequence *SEQ_add_sound_strip(Main *UNUSED(bmain),
Scene *UNUSED(scene),
ListBase *UNUSED(seqbase),
- const SeqLoadData *UNUSED(load_data))
+ SeqLoadData *UNUSED(load_data))
+{
+ return NULL;
+}
#endif // WITH_AUDASPACE
/**