From: Paul Brossier Date: Sun, 15 Dec 2013 02:06:57 +0000 (-0500) Subject: examples/parse_args.h: improve help message X-Git-Tag: 0.4.0~22 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=c7ec2c6d3822911f0b386a542fadc13c383384bd;p=aubio.git examples/parse_args.h: improve help message --- diff --git a/examples/parse_args.h b/examples/parse_args.h index 923125b9..f3c3b618 100644 --- a/examples/parse_args.h +++ b/examples/parse_args.h @@ -61,9 +61,9 @@ usage (FILE * stream, int exit_code) { fprintf (stream, "usage: %s [ options ] \n", prog_name); fprintf (stream, - " -i --input input type\n" + " -i --input input file\n" #ifdef PROG_HAS_OUTPUT - " -o --output output type\n" + " -o --output output file\n" #endif " -r --samplerate select samplerate\n" " -B --bufsize set buffer size\n" @@ -172,7 +172,7 @@ parse_args (int argc, char **argv) case 'H': hop_size = atoi (optarg); break; - case 'O': /*onset type */ + case 'O': /*onset method */ onset_method = optarg; break; case 't': /* threshold value for onset */