Module Name:    src
Committed By:   wiz
Date:           Tue Dec 30 12:14:34 UTC 2014

Modified Files:
        src/usr.bin/midirecord: midirecord.c

Log Message:
Sync usage with man page.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/midirecord/midirecord.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/midirecord/midirecord.c
diff -u src/usr.bin/midirecord/midirecord.c:1.2 src/usr.bin/midirecord/midirecord.c:1.3
--- src/usr.bin/midirecord/midirecord.c:1.2	Tue Dec 30 06:08:14 2014
+++ src/usr.bin/midirecord/midirecord.c	Tue Dec 30 12:14:34 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: midirecord.c,v 1.2 2014/12/30 06:08:14 mrg Exp $	*/
+/*	$NetBSD: midirecord.c,v 1.3 2014/12/30 12:14:34 wiz Exp $	*/
 
 /*
  * Copyright (c) 2014 Matthew R. Green
@@ -33,7 +33,7 @@
 #include <sys/cdefs.h>
 
 #ifndef lint
-__RCSID("$NetBSD: midirecord.c,v 1.2 2014/12/30 06:08:14 mrg Exp $");
+__RCSID("$NetBSD: midirecord.c,v 1.3 2014/12/30 12:14:34 wiz Exp $");
 #endif
 
 #include <sys/param.h>
@@ -786,16 +786,16 @@ static void
 usage(void)
 {
 
-	fprintf(stderr, "Usage: %s [-afhoqV] [options] {outfile|-}\n",
+	fprintf(stderr, "Usage: %s [-aDfhqV] [options] {outfile|-}\n",
 	    getprogname());
 	fprintf(stderr, "Options:\n"
 	    "\t-B buffer size\n"
-	    "\t-c filt_chans\n"
-	    "\t-d filt_devno\n"
+	    "\t-c channels\n"
+	    "\t-d devices\n"
 	    "\t-f sequencerdev\n"
-	    "\t-n notes per beat\n"
+	    "\t-n notesperbeat\n"
 	    "\t-r raw_output\n"
-	    "\t-t recording time\n"
-	    "\t-T tempo\n");
+	    "\t-T tempo\n"
+	    "\t-t recording time\n");
 	exit(EXIT_FAILURE);
 }

Reply via email to