diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2001-08-10 18:32:47 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2001-08-10 18:32:47 +0000 |
commit | 7205ff1e4c44c4c993a1e78c60f26c2a4465569a (patch) | |
tree | cc171392b11d2fe66c75053bdf0b45c298cffed7 /games/rogue/score.c | |
parent | 66cb25aa4e45eb6e9e88a895409d5880be144099 (diff) |
Minor -Wall
Diffstat (limited to 'games/rogue/score.c')
-rw-r--r-- | games/rogue/score.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/rogue/score.c b/games/rogue/score.c index cc91908d864..c530ab2fb29 100644 --- a/games/rogue/score.c +++ b/games/rogue/score.c @@ -1,4 +1,4 @@ -/* $OpenBSD: score.c,v 1.5 2001/08/08 21:20:05 pjanzen Exp $ */ +/* $OpenBSD: score.c,v 1.6 2001/08/10 18:32:46 pjanzen Exp $ */ /* $NetBSD: score.c,v 1.5 1995/04/22 10:28:26 cgd Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: score.c,v 1.5 2001/08/08 21:20:05 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: score.c,v 1.6 2001/08/10 18:32:46 pjanzen Exp $"; #endif #endif /* not lint */ @@ -334,6 +334,7 @@ insert_score(scores, n_names, n_name, rank, n, monster, other) char *n_name; short rank, n; object *monster; + int other; { short i; char buf[128]; |