Skip to content

Commit

Permalink
fixed error out with command line parser
Browse files Browse the repository at this point in the history
  • Loading branch information
stschiff committed Dec 5, 2022
1 parent e255076 commit 9dde336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msmc.d
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void main(string[] args) {
parseCommandLine(args);
}
catch(Exception e) {
stderr.writeln("error in parsing command line: ", e);
stderr.writeln("error in parsing command line: ", e.msg);
exit(0);
}
run();
Expand Down

0 comments on commit 9dde336

Please sign in to comment.