summaryrefslogtreecommitdiffstats
path: root/mille
diff options
context:
space:
mode:
authorjdc <jdc@NetBSD.org>2000-04-27 00:30:51 +0000
committerjdc <jdc@NetBSD.org>2000-04-27 00:30:51 +0000
commit30464b25f701aebd11d60ff475fa253adfc205c6 (patch)
tree2641b799ec229541a98a8ae04d6ee33ddbb24b59 /mille
parente7e0e448dea08bf6ed489b1bf62e287896dabc4e (diff)
downloadbsdgames-darwin-30464b25f701aebd11d60ff475fa253adfc205c6.tar.gz
bsdgames-darwin-30464b25f701aebd11d60ff475fa253adfc205c6.tar.zst
bsdgames-darwin-30464b25f701aebd11d60ff475fa253adfc205c6.zip
Fix arguments to *printw().
Diffstat (limited to 'mille')
-rw-r--r--mille/print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mille/print.c b/mille/print.c
index 4cf850c6..937beaaa 100644
--- a/mille/print.c
+++ b/mille/print.c
@@ -1,4 +1,4 @@
-/* $NetBSD: print.c,v 1.8 1999/09/08 21:45:28 jsm Exp $ */
+/* $NetBSD: print.c,v 1.9 2000/04/27 00:30:52 jdc Exp $ */
/*
* Copyright (c) 1982, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)print.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: print.c,v 1.8 1999/09/08 21:45:28 jsm Exp $");
+__RCSID("$NetBSD: print.c,v 1.9 2000/04/27 00:30:52 jdc Exp $");
#endif
#endif /* not lint */
@@ -89,7 +89,7 @@ prboard()
pp = &Player[PLAYER];
for (i = 0; i < HAND_SZ; i++)
show_card(i + 6, temp, pp->hand[i], &pp->sh_hand[i]);
- mvprintw(6, COMP_STRT + CARD_STRT, "%2d", Topcard - Deck);
+ mvprintw(6, COMP_STRT + CARD_STRT, "%2ld", Topcard - Deck);
show_card(8, COMP_STRT + CARD_STRT, Discard, &Sh_discard);
if (End == 1000) {
move(EXT_Y, EXT_X);