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:
authorCampbell Barton <ideasman42@gmail.com>2019-06-12 01:16:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-12 02:07:03 +0300
commit96708701abdb0688dfbbc5c97134a0ff45b2f09d (patch)
treec57735c024d40dc0f4fe37a07a194c20b9e74236 /source/blender/blenkernel/intern/sound.c
parentd93a7290e5063be31c7c6af9f0496182658f42d2 (diff)
Cleanup: unused vars
Diffstat (limited to 'source/blender/blenkernel/intern/sound.c')
-rw-r--r--source/blender/blenkernel/intern/sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index 927a45accca..dfa0783de06 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -1199,7 +1199,7 @@ int BKE_sound_scene_playing(Scene *UNUSED(scene))
}
void BKE_sound_read_waveform(Main *bmain, bSound *sound, short *stop)
{
- UNUSED_VARS(sound, stop);
+ UNUSED_VARS(sound, stop, bmain);
}
void BKE_sound_init_main(Main *UNUSED(bmain))
{