Skip to content

Commit

Permalink
Use exit code 0 for disabled startup
Browse files Browse the repository at this point in the history
Closes qzind#641
  • Loading branch information
tresf committed May 19, 2020
1 parent 2cffd2e commit 7563857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qz/utils/ArgParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public enum ExitStatus {
SUCCESS(0),
GENERAL_ERROR(1),
USAGE_ERROR(2),
NO_AUTOSTART(3);
NO_AUTOSTART(0);
private int code;
ExitStatus(int code) {
this.code = code;
Expand Down

0 comments on commit 7563857

Please sign in to comment.