summaryrefslogtreecommitdiffstats
path: root/games/tetris/input.c
diff options
context:
space:
mode:
authorpjanzen <pjanzen@openbsd.org>2001-02-04 14:23:27 +0000
committerpjanzen <pjanzen@openbsd.org>2001-02-04 14:23:27 +0000
commit1804aebcd9c54beee2b4d2a20e712cf31ed57f87 (patch)
treeae0592288bf7db828da8c32f4df6a6c81bdbede8 /games/tetris/input.c
parentremove duplicate #include's; ok markus@ (diff)
downloadwireguard-openbsd-1804aebcd9c54beee2b4d2a20e712cf31ed57f87.tar.xz
wireguard-openbsd-1804aebcd9c54beee2b4d2a20e712cf31ed57f87.zip
Long usernames. This really messes up the scoreboard printout, so change
it from two columns to one column with leaders printed every third score to guide the eye across the vast whitespace that's left with the traditional 8-char usernames.
Diffstat (limited to 'games/tetris/input.c')
-rw-r--r--games/tetris/input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/tetris/input.c b/games/tetris/input.c
index 3ce2f21c5cd..d2cdc003b0b 100644
--- a/games/tetris/input.c
+++ b/games/tetris/input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: input.c,v 1.4 1999/03/22 07:38:24 pjanzen Exp $ */
+/* $OpenBSD: input.c,v 1.5 2001/02/04 14:23:27 pjanzen Exp $ */
/* $NetBSD: input.c,v 1.3 1996/02/06 22:47:33 jtc Exp $ */
/*-
@@ -93,7 +93,7 @@ rwait(tvp)
endtv = *tvp;
s = &endtv;
} else
- s = 0;
+ s = NULL;
again:
i = 1;
switch (select(1, (fd_set *)&i, (fd_set *)0, (fd_set *)0, s)) {