summaryrefslogtreecommitdiffstats
path: root/phantasia/misc.c
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 /phantasia/misc.c
parente7e0e448dea08bf6ed489b1bf62e287896dabc4e (diff)
downloadbsdgames-darwin-30464b25f701aebd11d60ff475fa253adfc205c6.tar.gz
bsdgames-darwin-30464b25f701aebd11d60ff475fa253adfc205c6.tar.zst
bsdgames-darwin-30464b25f701aebd11d60ff475fa253adfc205c6.zip
Fix arguments to *printw().
Diffstat (limited to 'phantasia/misc.c')
-rw-r--r--phantasia/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/phantasia/misc.c b/phantasia/misc.c
index 098b5888..5be73cc5 100644
--- a/phantasia/misc.c
+++ b/phantasia/misc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: misc.c,v 1.6 1999/09/08 21:57:19 jsm Exp $ */
+/* $NetBSD: misc.c,v 1.7 2000/04/27 00:30:53 jdc Exp $ */
/*
* misc.c Phantasia miscellaneous support routines
@@ -426,7 +426,7 @@ allstatslist()
mvprintw(13, 0, "Sin : %9.5f", Player.p_sin);
mvprintw(14, 0, "Poison : %9.5f", Player.p_poison);
mvprintw(15, 0, "Gems : %9.0f", Player.p_gems);
- mvprintw(16, 0, "Age : %9d", Player.p_age);
+ mvprintw(16, 0, "Age : %9ld", Player.p_age);
mvprintw(10, 40, "Holy Water: %9d", Player.p_holywater);
mvprintw(11, 40, "Amulets : %9d", Player.p_amulets);
mvprintw(12, 40, "Charms : %9d", Player.p_charms);