From e7211deebd7348ff34265cca8be7d5f5c9a9dcb1 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sat, 12 Mar 2016 23:30:42 +1300 Subject: Correct exit value of die_help() --- misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v1.1