diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-10-08 01:29:12 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-10-08 01:29:12 -0700 |
commit | a031634bd64c7f30c4ace5ca06a5a47600b42f47 (patch) | |
tree | 919e13ed1ba2e6443fe952288085576322748405 /src/rmd_timer.c | |
parent | bd53002a2bf51d48992613601719d180fed09975 (diff) |
*: more cosmetic formatting cleanups
Making things a bit more consistent
Diffstat (limited to 'src/rmd_timer.c')
-rw-r--r-- | src/rmd_timer.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/rmd_timer.c b/src/rmd_timer.c index dd7b26c..ed49520 100644 --- a/src/rmd_timer.c +++ b/src/rmd_timer.c @@ -47,7 +47,8 @@ static struct timespec us_to_timespec(unsigned int us) }; } -static void sync_streams(ProgData *pdata, unsigned int *frame_step, struct timespec *delay) { +static void sync_streams(ProgData *pdata, unsigned int *frame_step, struct timespec *delay) +{ int avd; pthread_mutex_lock(&pdata->avd_mutex); @@ -91,8 +92,8 @@ static void sync_streams(ProgData *pdata, unsigned int *frame_step, struct times #endif } -void *rmdTimer(ProgData *pdata) { - +void *rmdTimer(ProgData *pdata) +{ rmdThreadsSetName("rmdTimer"); while (pdata->timer_alive) { |