summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
Diffstat (limited to 'games')
-rw-r--r--games/tetris/tetris.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/tetris/tetris.c b/games/tetris/tetris.c
index 45ad69516d9..48ee14fb6ca 100644
--- a/games/tetris/tetris.c
+++ b/games/tetris/tetris.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tetris.c,v 1.5 1999/02/12 04:08:55 deraadt Exp $ */
+/* $OpenBSD: tetris.c,v 1.6 1999/03/22 05:20:03 pjanzen Exp $ */
/* $NetBSD: tetris.c,v 1.2 1995/04/22 07:42:47 cgd Exp $ */
/*-
@@ -163,7 +163,7 @@ main(argc, argv)
for (i = 0; i <= 5; i++) {
for (j = i+1; j <= 5; j++) {
if (keys[i] == keys[j])
- errx(1, "Duplicate command keys specified.");
+ errx(1, "duplicate command keys specified.");
}
if (keys[i] == ' ')
strcpy(key_write[i], "<space>");
@@ -308,6 +308,6 @@ onintr(signo)
void
usage()
{
- (void)fprintf(stderr, "usage: tetris [-s] [-l level] [-k keys]\n");
+ (void)fprintf(stderr, "usage: tetris [-s] [-k keys] [-l level]\n");
exit(1);
}