summaryrefslogtreecommitdiff
path: root/games/bs
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2009-10-17 21:45:51 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2009-10-17 21:45:51 +0000
commit485f904fb134dac54c98f433e2002ce21084d094 (patch)
tree8aa55b661d8395cd36e409daf3dd4ffe3f42a633 /games/bs
parent5b9427cd33b6479564a20b687590acac91297266 (diff)
sort flags; "usage:" is lowercase.
Diffstat (limited to 'games/bs')
-rw-r--r--games/bs/bs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/games/bs/bs.c b/games/bs/bs.c
index f79d2808365..b4440286ebe 100644
--- a/games/bs/bs.c
+++ b/games/bs/bs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bs.c,v 1.20 2003/06/11 08:47:44 pjanzen Exp $ */
+/* $OpenBSD: bs.c,v 1.21 2009/10/17 21:45:50 sobrado Exp $ */
/*
* Copyright (c) 1986, Bruce Holloway
* All rights reserved.
@@ -40,7 +40,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: bs.c,v 1.20 2003/06/11 08:47:44 pjanzen Exp $";
+static const char rcsid[] = "$OpenBSD: bs.c,v 1.21 2009/10/17 21:45:50 sobrado Exp $";
#endif
/* #define _POSIX_SOURCE */ /* ( random() ) */
@@ -1284,10 +1284,10 @@ int playagain(void)
void usage()
{
- (void) fprintf(stderr, "Usage: bs [-s | -b] [-c]\n");
+ (void) fprintf(stderr, "usage: bs [-b | -s] [-c]\n");
(void) fprintf(stderr, "\tWhere the options are:\n");
- (void) fprintf(stderr, "\t-s : play a salvo game\n");
(void) fprintf(stderr, "\t-b : play a blitz game\n");
+ (void) fprintf(stderr, "\t-s : play a salvo game\n");
(void) fprintf(stderr, "\t-c : ships may be adjacent\n");
exit(1);
}