Cleanup: strict-prototypes warning

This commit is contained in:
Campbell Barton
2020-03-29 16:34:23 +11:00
parent ac02c702e5
commit d5163e06c3
2 changed files with 4 additions and 4 deletions

View File

@@ -117,8 +117,8 @@ void BKE_sound_ensure_scene(struct Scene *scene);
void BKE_sound_destroy_scene(struct Scene *scene);
void BKE_sound_lock();
void BKE_sound_unlock();
void BKE_sound_lock(void);
void BKE_sound_unlock(void);
void BKE_sound_reset_scene_specs(struct Scene *scene);

View File

@@ -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))