summaryrefslogtreecommitdiffstats
path: root/rogue/room.c
diff options
context:
space:
mode:
Diffstat (limited to 'rogue/room.c')
-rw-r--r--rogue/room.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/rogue/room.c b/rogue/room.c
index e96cf273..df876f04 100644
--- a/rogue/room.c
+++ b/rogue/room.c
@@ -1,4 +1,4 @@
-/* $NetBSD: room.c,v 1.5 1998/09/11 14:11:57 hubertf Exp $ */
+/* $NetBSD: room.c,v 1.6 1998/11/10 13:01:32 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.5 1998/09/11 14:11:57 hubertf Exp $");
+__RCSID("$NetBSD: room.c,v 1.6 1998/11/10 13:01:32 hubertf Exp $");
#endif
#endif /* not lint */
@@ -65,7 +65,7 @@ boolean rooms_visited[MAXROOMS];
#define NOPTS 7
struct option {
- char *prompt;
+ const char *prompt;
boolean is_bool;
char **strval;
boolean *bval;
@@ -627,7 +627,7 @@ void
opt_show(i)
int i;
{
- char *s;
+ const char *s;
struct option *opt = &options[i];
opt_erase(i);
@@ -661,7 +661,7 @@ void
do_shell()
{
#ifdef UNIX
- char *sh;
+ const char *sh;
md_ignore_signals();
if (!(sh = md_getenv("SHELL"))) {