mirror of
https://github.com/vasi/pixz
synced 2024-10-30 15:21:41 +00:00
Do not return exit status 2 when given -h
This is rather surprising for pixz to "fail" when giving `--help`/`-h`.
This commit is contained in:
parent
ec33de7b18
commit
57de570db7
@ -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…
Reference in New Issue
Block a user