audio/flacenc: missed an argument in fprintf()

This commit is contained in:
Sigrid 2021-01-12 11:15:18 +01:00
parent 5d328689de
commit 6103d6ed2c

View file

@ -65,7 +65,7 @@ main(int argc, char *argv[])
case 'b': case 'b':
bits = atoi(EARGF(usage())); bits = atoi(EARGF(usage()));
if(bits <= 8 || bits > 32){ 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); exit(1);
} }
break; break;