Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/atc use a more suitable type



details:   https://anonhg.NetBSD.org/src/rev/5a5848ba4553
branches:  trunk
changeset: 327982:5a5848ba4553
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sat Mar 22 22:47:07 2014 +0000

description:
use a more suitable type

diffstat:

 games/atc/input.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r 5a785a03821b -r 5a5848ba4553 games/atc/input.c
--- a/games/atc/input.c Sat Mar 22 22:45:05 2014 +0000
+++ b/games/atc/input.c Sat Mar 22 22:47:07 2014 +0000
@@ -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 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)



Home | Main Index | Thread Index | Old Index