Skip to content

Commit

Permalink
bug: fix dropped colon in bsconv
Browse files Browse the repository at this point in the history
  • Loading branch information
jamorrison committed Jun 17, 2024
1 parent 6a5d7ef commit e61cbd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bsconv.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ int main_bsconv(int argc, char *argv[]) {
conf.no_printing = 0; // only needed for qc at this time, so don't provide a command line argument to change this for now

if (argc < 2) { usage(); return 1; }
while ((c = getopt(argc, argv, ":g:m:ac:f:y:ptx:uvh")) >= 0) {
while ((c = getopt(argc, argv, ":g:m:ac:f:y:pt:x:uvh")) >= 0) {
switch (c) {
case 'g': reg = optarg; break;
case 'm': conf.max_cph = atoi(optarg); break;
Expand Down

0 comments on commit e61cbd3

Please sign in to comment.