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:
authorDalai Felinto <dalai@blender.org>2020-03-27 12:24:36 +0300
committerDalai Felinto <dalai@blender.org>2020-03-27 12:29:33 +0300
commit3441862c96d6d08b87ad00040e5349af6f28dc9e (patch)
tree240c5c03e5805ff850110ac37f44cfdd0a048641 /source/blender/blenkernel/intern/sound.c
parent96b3463e250c31466aa4ff91dd6236d3fab8119e (diff)
Cleanup: Silence warnings
Diffstat (limited to 'source/blender/blenkernel/intern/sound.c')
-rw-r--r--source/blender/blenkernel/intern/sound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index 3bb95eaeff0..f0545ae56bd 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -550,12 +550,12 @@ void BKE_sound_destroy_scene(Scene *scene)
}
}
-void BKE_sound_lock_scene(struct Scene *scene)
+void BKE_sound_lock_scene(struct Scene *UNUSED(scene))
{
AUD_Device_lock(sound_device);
}
-void BKE_sound_unlock_scene(struct Scene *scene)
+void BKE_sound_unlock_scene(struct Scene *UNUSED(scene))
{
AUD_Device_unlock(sound_device);
}