summaryrefslogtreecommitdiff
path: root/games/atc/log.c
diff options
context:
space:
mode:
authorPaul Janzen <pjanzen@cvs.openbsd.org>1999-09-01 00:27:09 +0000
committerPaul Janzen <pjanzen@cvs.openbsd.org>1999-09-01 00:27:09 +0000
commitfd7cb7278c603ed8c4c5a78803c7fc50505af140 (patch)
tree72dba43e277eff8dae494813d10109fad0599575 /games/atc/log.c
parent218d5628e20ac2fdb9baa100d7537b10cc592145 (diff)
Make sure screen is big enough for the selected game; also a little tidying
Diffstat (limited to 'games/atc/log.c')
-rw-r--r--games/atc/log.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/games/atc/log.c b/games/atc/log.c
index f06018990c1..4ac3723c37c 100644
--- a/games/atc/log.c
+++ b/games/atc/log.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.c,v 1.5 1998/09/21 07:36:06 pjanzen Exp $ */
+/* $OpenBSD: log.c,v 1.6 1999/09/01 00:27:08 pjanzen Exp $ */
/* $NetBSD: log.c,v 1.3 1995/03/21 15:04:21 cgd Exp $ */
/*-
@@ -50,7 +50,7 @@
#if 0
static char sccsid[] = "@(#)log.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: log.c,v 1.5 1998/09/21 07:36:06 pjanzen Exp $";
+static char rcsid[] = "$OpenBSD: log.c,v 1.6 1999/09/01 00:27:08 pjanzen Exp $";
#endif
#endif not lint
@@ -65,8 +65,8 @@ compar(va, vb)
{
const SCORE *a, *b;
- a = (SCORE *)va;
- b = (SCORE *)vb;
+ a = (const SCORE *)va;
+ b = (const SCORE *)vb;
if (b->planes == a->planes)
return (b->time - a->time);
else