From 3ed8e36d4630960103a8c52215861f6da3892ea6 Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 15 Apr 2022 10:45:29 +0100 Subject: [PATCH] Cleanup whitespace Signed-off-by: falkTX --- meson.build | 2 +- tools/alsa_out.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 9f04f93..d51c1e1 100644 --- a/meson.build +++ b/meson.build @@ -62,7 +62,7 @@ has_jack2_internal_client = cc.compiles( client_name = "foo"; client = jack_client_open(client_name, JackNoStartServer, &status); - intclient = jack_internal_client_handle (client, client_name, &status); + intclient = jack_internal_client_handle(client, client_name, &status); } ''' ) diff --git a/tools/alsa_out.c b/tools/alsa_out.c index 1fdee50..d18a67f 100644 --- a/tools/alsa_out.c +++ b/tools/alsa_out.c @@ -754,7 +754,7 @@ int main (int argc, char *argv[]) { if( !sample_rate ) sample_rate = jack_sample_rate; - static_resample_factor = (double) sample_rate / (double) jack_sample_rate; + static_resample_factor = (double) sample_rate / (double) jack_sample_rate; resample_lower_limit = static_resample_factor * 0.25; resample_upper_limit = static_resample_factor * 4.0; resample_mean = static_resample_factor;