diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2016-03-12 23:30:42 +1300 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2016-03-12 23:30:42 +1300 |
commit | e7211deebd7348ff34265cca8be7d5f5c9a9dcb1 (patch) | |
tree | d4afca7d33627b0206d59686b8d24716c13dfe7d /misc.c | |
parent | d48d40aa832f1f128df74d41393c016dbfe99510 (diff) | |
download | cue-bin-split-e7211deebd7348ff34265cca8be7d5f5c9a9dcb1.tar.xz |
Correct exit value of die_help()
Diffstat (limited to 'misc.c')
-rw-r--r-- | misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |