summaryrefslogtreecommitdiff
path: root/src/q_god.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-05-10 18:00:12 +0200
committerBardur Arantsson <bardur@scientician.net>2012-05-10 18:44:07 +0200
commit50ea7fdc8af5d74a8f1d0e2d730f3b45d2d14d8e (patch)
treeb494d325fad464d7469ca485914c16e85d047af6 /src/q_god.c
parent882afb262b6c01719b3c26c6b49d5ead50af84db (diff)
Fix 32-bit warnings
Diffstat (limited to 'src/q_god.c')
-rw-r--r--src/q_god.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/q_god.c b/src/q_god.c
index ecc26d96..a01a60a9 100644
--- a/src/q_god.c
+++ b/src/q_god.c
@@ -285,7 +285,7 @@ bool_ quest_god_describe(FILE *fff)
{
if (cquest.status == QUEST_STATUS_TAKEN)
{
- fprintf(fff, "#####yGod quest %d!\n", cquest_quests_given);
+ fprintf(fff, "#####yGod quest " FMTs32b "!\n", cquest_quests_given);
fprintf(fff, "Thou art to find the lost temple of thy God and\n");
fprintf(fff, "to retrieve the lost part of the relic for thy God! \n");
print_directions(FALSE, print_using_print_hook, fff);