This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack2
mirror of
https://github.com/jackaudio/jack2
Watch
1
Star
0
Fork
0
Code
Releases
45
Activity
Browse Source
add newline to bufsize and samplerate output.
tags/v1.9.4
Torben Hohn
16 years ago
parent
854f650da0
commit
3a8074443f
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
example-clients/bufsize.c
+1
-1
example-clients/samplerate.c
+ 1
- 1
example-clients/bufsize.c
View File
@@ -92,7 +92,7 @@ int main(int argc, char *argv[])
jack_on_shutdown(client, jack_shutdown, 0);
if (just_print_bufsize) {
fprintf(stdout, "%d", jack_get_buffer_size( client ) );
fprintf(stdout, "%d
\n
", jack_get_buffer_size( client ) );
rc=0;
}
else
+ 1
- 1
example-clients/samplerate.c
View File
@@ -79,7 +79,7 @@ int main(int argc, char *argv[])
jack_on_shutdown(client, jack_shutdown, 0);
fprintf(stdout, "%d", jack_get_sample_rate( client ) );
fprintf(stdout, "%d
\n
", jack_get_sample_rate( client ) );
jack_client_close(client);
Write
Preview
Loading…
Cancel
Save