Skip to content

Commit

Permalink
Use argList instead of argv when processing N flag
Browse files Browse the repository at this point in the history
  • Loading branch information
dschuff committed Aug 18, 2023
1 parent bcd2e78 commit 7cd1a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/support/command-line.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ void Options::parse(int argc, const char* argv[]) {
<< currentOption << "'\n";
exit(EXIT_FAILURE);
}
argument = argv[++i];
argument = argList[++i];
}
break;
case Arguments::Optional:
Expand Down

0 comments on commit 7cd1a54

Please sign in to comment.