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>2020-03-29 08:34:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-29 08:37:57 +0300
commitd5163e06c3e3c18e07756fbb86fb3e8f637db2fd (patch)
tree5aeb94873a180fe69fc98a06a40e6a2dec4b7c7e /source/blender/blenkernel/intern/sound.c
parentac02c702e5ecfd1a01f0c377dc30336a473580ca (diff)
Cleanup: strict-prototypes warning
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 a06f73b2003..97a643e88b6 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -1161,10 +1161,10 @@ void BKE_sound_create_scene(Scene *UNUSED(scene))
void BKE_sound_destroy_scene(Scene *UNUSED(scene))
{
}
-void BKE_sound_lock()
+void BKE_sound_lock(void)
{
}
-void BKE_sound_unlock()
+void BKE_sound_unlock(void)
{
}
void BKE_sound_reset_scene_specs(Scene *UNUSED(scene))