aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-03-12 23:30:42 +1300
committerDavid Phillips <dbphillipsnz@gmail.com>2016-03-12 23:30:42 +1300
commite7211deebd7348ff34265cca8be7d5f5c9a9dcb1 (patch)
treed4afca7d33627b0206d59686b8d24716c13dfe7d
parentd48d40aa832f1f128df74d41393c016dbfe99510 (diff)
downloadcue-bin-split-e7211deebd7348ff34265cca8be7d5f5c9a9dcb1.tar.xz
Correct exit value of die_help()
-rw-r--r--misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index 5b9e773..76ddaaf 100644
--- a/misc.c
+++ b/misc.c
@@ -75,5 +75,5 @@ void die_help()
" -s size of a single channel's sample (bytes)\n"
" -f name_format (%%d and co are replaced with track number)\n"
);
- exit(-1);
+ exit(1);
}