Skip to content

Commit 8af8863

Browse files
committed
fix parsing of -a option
1 parent e7cc917 commit 8af8863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ecpprog/ecpprog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ int main(int argc, char **argv)
830830
/* Decode command line parameters */
831831
int opt;
832832
char *endptr;
833-
while ((opt = getopt_long(argc, argv, "d:i:I:rR:e:o:k:scbnStvpX", long_options, NULL)) != -1) {
833+
while ((opt = getopt_long(argc, argv, "d:i:I:rR:e:o:k:scabnStvpX", long_options, NULL)) != -1) {
834834
switch (opt) {
835835
case 'd': /* device string */
836836
devstr = optarg;

0 commit comments

Comments
 (0)