Skip to content

Commit

Permalink
Merge pull request #474 from leftmostcat/exit-bin2pat
Browse files Browse the repository at this point in the history
Die as intended on bin2pat error
  • Loading branch information
s3rvac authored Jan 28, 2019
2 parents 3cec5ee + 27bc561 commit 142eb78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin2pat/bin2pat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ int printErrorAndDie(
{
std::cerr << "Error: " << message << ".\n";
printUsage(std::cerr);
return 1;
exit(1);
}

int needValue(
Expand Down

0 comments on commit 142eb78

Please sign in to comment.