summaryrefslogtreecommitdiffstats
path: root/snake
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1998-07-27 01:12:35 +0000
committermycroft <mycroft@NetBSD.org>1998-07-27 01:12:35 +0000
commitc57fa9b1accc28bd366bc1236a0a39ec8aea5130 (patch)
tree9c8b229ce0453984e5eff5ff38adbb5599ab45b1 /snake
parent11961241abd27c9cf1344a211e8331ffd25259b9 (diff)
downloadbsdgames-darwin-c57fa9b1accc28bd366bc1236a0a39ec8aea5130.tar.gz
bsdgames-darwin-c57fa9b1accc28bd366bc1236a0a39ec8aea5130.tar.zst
bsdgames-darwin-c57fa9b1accc28bd366bc1236a0a39ec8aea5130.zip
const poisoning.
Diffstat (limited to 'snake')
-rw-r--r--snake/snscore/snscore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/snake/snscore/snscore.c b/snake/snscore/snscore.c
index ddcb0fb9..71b9e050 100644
--- a/snake/snscore/snscore.c
+++ b/snake/snscore/snscore.c
@@ -1,4 +1,4 @@
-/* $NetBSD: snscore.c,v 1.6 1997/10/12 01:49:33 lukem Exp $ */
+/* $NetBSD: snscore.c,v 1.7 1998/07/27 01:12:36 mycroft Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)snscore.c 8.1 (Berkeley) 7/19/93";
#else
-__RCSID("$NetBSD: snscore.c,v 1.6 1997/10/12 01:49:33 lukem Exp $");
+__RCSID("$NetBSD: snscore.c,v 1.7 1998/07/27 01:12:36 mycroft Exp $");
#endif
#endif /* not lint */
@@ -76,7 +76,7 @@ main(argc, argv)
int noplayers;
int i, j, notsorted;
short whoallbest, allbest;
- char *q;
+ const char *q;
struct passwd *p;
fd = fopen(recfile, "r");