Merge pull request #91 from kit-ty-kate/patch-1

Do not return exit status 2 when given -h
pull/93/head
Dave Vasilevsky 3 years ago committed by GitHub
commit 3c7e8bc68c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -51,7 +51,9 @@ static void usage(const char *msg) {
"https://github.com/vasi/pixz\n"
"You may use this software under the FreeBSD License\n",
PACKAGE_VERSION);
exit(2);
if (msg)
exit(2);
exit(0);
}
int main(int argc, char **argv) {

Loading…
Cancel
Save