summaryrefslogtreecommitdiffstats
path: root/larn/data.c
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1997-10-25 01:40:47 +0000
committerthorpej <thorpej@NetBSD.org>1997-10-25 01:40:47 +0000
commitda35b5fa1af764342af0c4c8efd8ea9a33f41920 (patch)
tree9d99dee52652fb8441e8ecb167800c9b261c11ed /larn/data.c
parent17697c3a4116f615a72085c20c62f255553a012e (diff)
downloadbsdgames-darwin-da35b5fa1af764342af0c4c8efd8ea9a33f41920.tar.gz
bsdgames-darwin-da35b5fa1af764342af0c4c8efd8ea9a33f41920.tar.zst
bsdgames-darwin-da35b5fa1af764342af0c4c8efd8ea9a33f41920.zip
Fix time_t vs. long botch.
Diffstat (limited to 'larn/data.c')
-rw-r--r--larn/data.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/larn/data.c b/larn/data.c
index 6a2eff8d..571cf453 100644
--- a/larn/data.c
+++ b/larn/data.c
@@ -1,4 +1,4 @@
-/* $NetBSD: data.c,v 1.8 1997/10/18 20:03:10 christos Exp $ */
+/* $NetBSD: data.c,v 1.9 1997/10/25 01:40:47 thorpej Exp $ */
/*-
* Copyright (c) 1988 The Regents of the University of California.
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)data.c 5.3 (Berkeley) 5/13/91";
#else
-__RCSID("$NetBSD: data.c,v 1.8 1997/10/18 20:03:10 christos Exp $");
+__RCSID("$NetBSD: data.c,v 1.9 1997/10/25 01:40:47 thorpej Exp $");
#endif
#endif /* not lint */
@@ -168,7 +168,7 @@ short lasthx = 0, lasthy = 0; /* location of monster last hit by
* player */
short nobeep = 0; /* true if program is not to beep */
unsigned long randx = 33601; /* the random number seed */
-long initialtime = 0;/* time playing began */
+time_t initialtime = 0;/* time playing began */
long gltime = 0; /* the clock for the game */
long outstanding_taxes = 0; /* present tax bill from score file */
long c[100], cbak[100]; /* the character description arrays */