summaryrefslogtreecommitdiffstats
path: root/mille/print.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2011-08-16 11:14:04 +0000
committerchristos <christos@NetBSD.org>2011-08-16 11:14:04 +0000
commit7f3b9841994ed627f10b127d3b992075cad8affb (patch)
treed79f3b2b53a36462b0de3e0da8c83a97af9a95b3 /mille/print.c
parentea4e3d5fd9e93df96c4ab1c9cc6090610dd73bec (diff)
downloadbsdgames-darwin-7f3b9841994ed627f10b127d3b992075cad8affb.tar.gz
bsdgames-darwin-7f3b9841994ed627f10b127d3b992075cad8affb.zip
eliminate non-literal format strings
Diffstat (limited to 'mille/print.c')
-rw-r--r--mille/print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mille/print.c b/mille/print.c
index 8333179e..68e830d0 100644
--- a/mille/print.c
+++ b/mille/print.c
@@ -1,4 +1,4 @@
-/* $NetBSD: print.c,v 1.16 2011/05/23 22:59:27 joerg Exp $ */
+/* $NetBSD: print.c,v 1.17 2011/08/16 11:14:04 christos Exp $ */
/*
* Copyright (c) 1982, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)print.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: print.c,v 1.16 2011/05/23 22:59:27 joerg Exp $");
+__RCSID("$NetBSD: print.c,v 1.17 2011/08/16 11:14:04 christos Exp $");
#endif
#endif /* not lint */
@@ -115,7 +115,7 @@ show_card(int y, int x, CARD c, CARD *lc)
*lc = c;
}
-static char Score_fmt[] = "%4d";
+#define Score_fmt "%4d"
void
prscore(bool for_real)