From e61cbd33b6d6322ee0d7d9ab0a0b160d234d2735 Mon Sep 17 00:00:00 2001 From: Jacob Morrison Date: Mon, 17 Jun 2024 11:09:51 -0400 Subject: [PATCH] bug: fix dropped colon in bsconv --- src/bsconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bsconv.c b/src/bsconv.c index ba1932e..85c6d19 100644 --- a/src/bsconv.c +++ b/src/bsconv.c @@ -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;