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
Merge pull request
#125
from mseeber/fix-jack_bufsize-off-by-ten
[jack_bufsize] Fix off by 10 error
tags/v1.9.11-RC1
Stéphane Letz
10 years ago
parent
c9bb19a958
8a66d611b9
commit
b5bceb50c7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
example-clients/bufsize.c
+ 1
- 1
example-clients/bufsize.c
View File
@@ -76,7 +76,7 @@ void parse_arguments(int argc, char *argv[])
exit(2);
}
if (nframes < 1 || nframes > 81
8
2) {
if (nframes < 1 || nframes > 81
9
2) {
fprintf(stderr, "%s: invalid buffer size: %s (range is 1-8192)\n",
package, argv[1]);
exit(3);
Write
Preview
Loading…
Cancel
Save