diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-03-22 05:20:04 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-03-22 05:20:04 +0000 |
commit | aa8d91e7780805ee15e1b64fd6e1eac949a7ea7b (patch) | |
tree | 6055363c2ee06b2c30d96fe9ab85b2483e1467c2 /games | |
parent | a10e72f3e5dc0239a902ec0a41d408b526267f8c (diff) |
cosmetic changes from soren@t.dk
Diffstat (limited to 'games')
-rw-r--r-- | games/tetris/tetris.c | 6 |
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); } |