Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use argList instead of argv when processing N flag
  • Loading branch information
dschuff committed Aug 31, 2023
commit ae8fbd1672b1b18b1d8716e272f6ba80c89bb592
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