summaryrefslogtreecommitdiffstats
path: root/atc
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-22 22:47:07 +0000
committerdholland <dholland@NetBSD.org>2014-03-22 22:47:07 +0000
commitb02984cd3526b2e629c94ede019e8e2492c06e5f (patch)
tree7a4dd17df29292eb041b7dc253674bcc771c0b28 /atc
parent64808850222580f008163db7fd9e2267f505d35c (diff)
downloadbsdgames-darwin-b02984cd3526b2e629c94ede019e8e2492c06e5f.tar.gz
bsdgames-darwin-b02984cd3526b2e629c94ede019e8e2492c06e5f.tar.zst
bsdgames-darwin-b02984cd3526b2e629c94ede019e8e2492c06e5f.zip
use a more suitable type
Diffstat (limited to 'atc')
-rw-r--r--atc/input.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/atc/input.c b/atc/input.c
index c0d1be32..1513c2a4 100644
--- a/atc/input.c
+++ b/atc/input.c
@@ -1,4 +1,4 @@
-/* $NetBSD: input.c,v 1.26 2014/03/22 22:45:05 dholland Exp $ */
+/* $NetBSD: input.c,v 1.27 2014/03/22 22:47:07 dholland Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -46,7 +46,7 @@
#if 0
static char sccsid[] = "@(#)input.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: input.c,v 1.26 2014/03/22 22:45:05 dholland Exp $");
+__RCSID("$NetBSD: input.c,v 1.27 2014/03/22 22:47:07 dholland Exp $");
#endif
#endif /* not lint */
@@ -199,7 +199,8 @@ static PLANE p;
static STACK stack[MAXDEPTH];
static int level;
static int tval;
-static int dest_type, dest_no, dir;
+static int dest_type, dir;
+static unsigned dest_no;
static int
pop(void)