From d8dbd49a2f23b7637f05fc058f39bdf6ab706624 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 31 May 2019 22:51:19 +1000 Subject: Cleanup: style, use braces in source/ Automated using clang-tidy. --- source/blender/blenkernel/intern/sound.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/blenkernel/intern') diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c index 913d9be9a62..0cd51766078 100644 --- a/source/blender/blenkernel/intern/sound.c +++ b/source/blender/blenkernel/intern/sound.c @@ -807,8 +807,9 @@ int BKE_sound_scene_playing(Scene *scene) } // in case of a "Null" audio device, we have no playback information - if (AUD_Device_getRate(sound_device) == AUD_RATE_INVALID) + if (AUD_Device_getRate(sound_device) == AUD_RATE_INVALID) { return -1; + } if (scene->audio.flag & AUDIO_SYNC) { return AUD_isSynchronizerPlaying(); -- cgit v1.2.3