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/object.c | |
parent | 66cb25aa4e45eb6e9e88a895409d5880be144099 (diff) |
Minor -Wall
Diffstat (limited to 'games/rogue/object.c')
-rw-r--r-- | games/rogue/object.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/rogue/object.c b/games/rogue/object.c index a74bb3a7077..4801d086492 100644 --- a/games/rogue/object.c +++ b/games/rogue/object.c @@ -1,4 +1,4 @@ -/* $OpenBSD: object.c,v 1.3 1998/08/22 08:55:36 pjanzen Exp $ */ +/* $OpenBSD: object.c,v 1.4 2001/08/10 18:32:46 pjanzen Exp $ */ /* $NetBSD: object.c,v 1.3 1995/04/22 10:27:50 cgd Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)object.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: object.c,v 1.3 1998/08/22 08:55:36 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: object.c,v 1.4 2001/08/10 18:32:46 pjanzen Exp $"; #endif #endif /* not lint */ @@ -269,6 +269,7 @@ object_at(pack, row, col) object * get_letter_object(ch) + int ch; { object *obj; |