audio/flacenc: missed an argument in fprintf()
This commit is contained in:
parent
5d328689de
commit
6103d6ed2c
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ main(int argc, char *argv[])
|
|||
case 'b':
|
||||
bits = atoi(EARGF(usage()));
|
||||
if(bits <= 8 || bits > 32){
|
||||
fprintf(stderr, "bits per sample = %d not supported\n");
|
||||
fprintf(stderr, "bits per sample = %d not supported\n", bits);
|
||||
exit(1);
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue