Cleanup whitespace

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-04-15 10:45:29 +01:00
parent 0b02ad4873
commit 3ed8e36d46
No known key found for this signature in database
GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}
'''
)

View File

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