This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack1
mirror of
https://github.com/jackaudio/jack1
Watch
1
Star
0
Fork
0
Code
Releases
19
Activity
Browse Source
add newlines to output of jack_bufsize and jack_samplerate when used without arguments
git-svn-id: svn+ssh://jackaudio.org/trunk/jack@3726 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.117.0
paul
16 years ago
parent
b25ebbd9f0
commit
d523d4347d
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tools/bufsize.c
+1
-1
tools/samplerate.c
+ 1
- 1
tools/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
tools/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