diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-01-21 19:12:14 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-01-21 19:12:14 +0000 |
commit | 7a0881cf3134f24b0e2e04e075841298f05a1618 (patch) | |
tree | 707b2b84fce0c275dd0d658cb4054a7d7acf2acf /games/rogue/room.c | |
parent | 015a4179321bbc59cf34543034f1e859d4815555 (diff) |
make rogue const-correct, and fix one write-strings issue.
ok miod@
Diffstat (limited to 'games/rogue/room.c')
-rw-r--r-- | games/rogue/room.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/rogue/room.c b/games/rogue/room.c index 03bde944956..44382a78b85 100644 --- a/games/rogue/room.c +++ b/games/rogue/room.c @@ -1,4 +1,4 @@ -/* $OpenBSD: room.c,v 1.7 2003/06/03 03:01:41 millert Exp $ */ +/* $OpenBSD: room.c,v 1.8 2004/01/21 19:12:13 espie Exp $ */ /* $NetBSD: room.c,v 1.3 1995/04/22 10:28:17 cgd Exp $ */ /* @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)room.c 8.1 (Berkeley) 5/31/93"; #else -static const char rcsid[] = "$OpenBSD: room.c,v 1.7 2003/06/03 03:01:41 millert Exp $"; +static const char rcsid[] = "$OpenBSD: room.c,v 1.8 2004/01/21 19:12:13 espie Exp $"; #endif #endif /* not lint */ @@ -658,7 +658,7 @@ opt_go(i) void do_shell() { - char *sh; + const char *sh; md_ignore_signals(); if (!(sh = md_getenv("SHELL"))) { |