From a031634bd64c7f30c4ace5ca06a5a47600b42f47 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 8 Oct 2020 01:29:12 -0700 Subject: *: more cosmetic formatting cleanups Making things a bit more consistent --- src/rmd_capture_audio.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/rmd_capture_audio.c') diff --git a/src/rmd_capture_audio.c b/src/rmd_capture_audio.c index 1d5b596..f939350 100644 --- a/src/rmd_capture_audio.c +++ b/src/rmd_capture_audio.c @@ -42,7 +42,8 @@ #include -void *rmdCaptureAudio(ProgData *pdata) { +void *rmdCaptureAudio(ProgData *pdata) +{ #ifdef HAVE_LIBASOUND int frames = pdata->periodsize; @@ -160,7 +161,7 @@ void *rmdCaptureAudio(ProgData *pdata) { pthread_mutex_lock(&pdata->sound_buffer_mutex); tmp = pdata->sound_buffer; if (!tmp) - pdata->sound_buffer = newbuf; + pdata->sound_buffer = newbuf; else { while (tmp->next != NULL) tmp = tmp->next; -- cgit v1.2.1