From 9e63c3cee8ee19359da7e7cfd641adeb56aff8d9 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 18 Apr 2023 11:24:44 +0200 Subject: [PATCH] Fix strict prototypes in Audio --- source/blender/blenkernel/intern/sound.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c index 15eada5cacc..e3b70378f40 100644 --- a/source/blender/blenkernel/intern/sound.c +++ b/source/blender/blenkernel/intern/sound.c @@ -649,12 +649,12 @@ void BKE_sound_destroy_scene(Scene *scene) } } -void BKE_sound_lock() +void BKE_sound_lock(void) { AUD_Device_lock(sound_device); } -void BKE_sound_unlock() +void BKE_sound_unlock(void) { AUD_Device_unlock(sound_device); }