summaryrefslogtreecommitdiffstats
path: root/mille
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>1999-10-01 17:06:01 +0000
committerjsm <jsm@NetBSD.org>1999-10-01 17:06:01 +0000
commit66dcf6ac131bfb208ed57aa184d0e385386590ee (patch)
tree9db4ad228a4f16579d67d76265ce525f5a8b0d44 /mille
parentd151b71b35743c21c73445f998e5bb1f40b5e8b7 (diff)
downloadbsdgames-darwin-66dcf6ac131bfb208ed57aa184d0e385386590ee.tar.gz
bsdgames-darwin-66dcf6ac131bfb208ed57aa184d0e385386590ee.tar.zst
bsdgames-darwin-66dcf6ac131bfb208ed57aa184d0e385386590ee.zip
Fix error in last namespace change (only relevant #ifdef DEBUG).
Diffstat (limited to 'mille')
-rw-r--r--mille/move.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mille/move.c b/mille/move.c
index 4afa8207..d3f3a164 100644
--- a/mille/move.c
+++ b/mille/move.c
@@ -1,4 +1,4 @@
-/* $NetBSD: move.c,v 1.11 1999/09/30 18:01:32 jsm Exp $ */
+/* $NetBSD: move.c,v 1.12 1999/10/01 17:06:01 jsm Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: move.c,v 1.11 1999/09/30 18:01:32 jsm Exp $");
+__RCSID("$NetBSD: move.c,v 1.12 1999/10/01 17:06:01 jsm Exp $");
#endif
#endif /* not lint */
@@ -175,7 +175,7 @@ check_go()
#ifdef DEBUG
if (Debug) {
fprintf(outf, "CHECK_GO: can play %s (%d), ", C_name[card], card);
- fprintf(outf, "is_safety(card) = %d, ", issafety(card));
+ fprintf(outf, "is_safety(card) = %d, ", is_safety(card));
fprintf(outf, "canplay(pp, op, card) = %d\n", canplay(pp, op, card));
}
#endif