summaryrefslogtreecommitdiff
path: root/usr.bin/midiplay
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2009-10-14 18:22:50 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2009-10-14 18:22:50 +0000
commitb230cbb868a022357ece2712f72d7723a4637796 (patch)
treeb88db834c4b2b82e0ffc380ed32dd8b8aaeb5e9a /usr.bin/midiplay
parent7b336baddb853d00bb98f54fb2e4792c51355433 (diff)
add a missing flag to usage; while here, slightly improve spacing
in source code (being consistent with the style used in the rest of this file) and write "usage:" using lower case letters only, as usual in the BSD operating systems. ok ratchov@
Diffstat (limited to 'usr.bin/midiplay')
-rw-r--r--usr.bin/midiplay/midiplay.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/midiplay/midiplay.c b/usr.bin/midiplay/midiplay.c
index 6bd15d10684..46af4c873a2 100644
--- a/usr.bin/midiplay/midiplay.c
+++ b/usr.bin/midiplay/midiplay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: midiplay.c,v 1.10 2008/06/26 05:42:21 ray Exp $ */
+/* $OpenBSD: midiplay.c,v 1.11 2009/10/14 18:22:49 sobrado Exp $ */
/* $NetBSD: midiplay.c,v 1.8 1998/11/25 22:17:07 augustss Exp $ */
/*
@@ -125,8 +125,9 @@ u_char sample[] = {
void
usage(void)
{
- printf("Usage: %s [-lmqvx] [-d devno] [-f file] [-t tempo] "
- "[file ...]\n", __progname);
+ printf("usage: "
+ "%s [-glmqvx] [-d devno] [-f file] [-t tempo] [file ...]\n",
+ __progname);
exit(1);
}