From cb8e733b14ce95ee791c5c30bdb635007d017c0b Mon Sep 17 00:00:00 2001 From: bde Date: Tue, 30 Jun 1998 19:10:49 +0000 Subject: Fixed printf format errors. --- games/rogue/score.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'games/rogue/score.c') diff --git a/games/rogue/score.c b/games/rogue/score.c index 385a401..06b10b7 100644 --- a/games/rogue/score.c +++ b/games/rogue/score.c @@ -336,7 +336,7 @@ object *monster; } } } - sprintf(buf, "%2d %6d %s: ", rank+1, rogue.gold, login_name); + sprintf(buf, "%2d %6ld %s: ", rank+1, rogue.gold, login_name); if (other) { switch(other) { -- cgit v1.1