summaryrefslogtreecommitdiffstats
path: root/rogue
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1998-09-11 14:11:57 +0000
committerhubertf <hubertf@NetBSD.org>1998-09-11 14:11:57 +0000
commite9213db5e7a75fc8cd5480100e6bccf2bec46001 (patch)
tree742d1fa07c8636889bc884ebd993a6cc8a50a89a /rogue
parent82ffe2923024a321ef9accecf677442946a20670 (diff)
downloadbsdgames-darwin-e9213db5e7a75fc8cd5480100e6bccf2bec46001.tar.gz
bsdgames-darwin-e9213db5e7a75fc8cd5480100e6bccf2bec46001.tar.zst
bsdgames-darwin-e9213db5e7a75fc8cd5480100e6bccf2bec46001.zip
fix prototype, per PR#5867
Diffstat (limited to 'rogue')
-rw-r--r--rogue/room.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/rogue/room.c b/rogue/room.c
index 9aec0e74..e96cf273 100644
--- a/rogue/room.c
+++ b/rogue/room.c
@@ -1,4 +1,4 @@
-/* $NetBSD: room.c,v 1.4 1997/10/12 11:45:56 lukem Exp $ */
+/* $NetBSD: room.c,v 1.5 1998/09/11 14:11:57 hubertf Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)room.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: room.c,v 1.4 1997/10/12 11:45:56 lukem Exp $");
+__RCSID("$NetBSD: room.c,v 1.5 1998/09/11 14:11:57 hubertf Exp $");
#endif
#endif /* not lint */
@@ -131,6 +131,7 @@ light_up_room(rn)
void
light_passage(row, col)
+ int row, col;
{
short i, j, i_end, j_end;