From c7ec2c6d3822911f0b386a542fadc13c383384bd Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 14 Dec 2013 21:06:57 -0500 Subject: [PATCH] examples/parse_args.h: improve help message --- examples/parse_args.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 */ -- 2.11.0