diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-07-31 18:49:01 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-07-31 18:49:01 +0000 |
commit | e585050e69b2cffded83049457534efebbcb7ca9 (patch) | |
tree | 315af1a4012c229fabbf7c6b2937a35f6d089b10 /games/trek/help.c | |
parent | a6d6ed8a0aa01096faeeabaf63df8a1e305df488 (diff) |
Use const where appropriate: jsm28@cam.ac.uk
Diffstat (limited to 'games/trek/help.c')
-rw-r--r-- | games/trek/help.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/trek/help.c b/games/trek/help.c index fba6b90a84b..be9fd9b4bc3 100644 --- a/games/trek/help.c +++ b/games/trek/help.c @@ -1,4 +1,4 @@ -/* $OpenBSD: help.c,v 1.2 1998/08/19 07:41:39 pjanzen Exp $ */ +/* $OpenBSD: help.c,v 1.3 1999/07/31 18:48:59 pjanzen Exp $ */ /* $NetBSD: help.c,v 1.3 1995/04/22 10:59:01 cgd Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)help.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: help.c,v 1.2 1998/08/19 07:41:39 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: help.c,v 1.3 1999/07/31 18:48:59 pjanzen Exp $"; #endif #endif /* not lint */ @@ -67,7 +67,7 @@ static char rcsid[] = "$OpenBSD: help.c,v 1.2 1998/08/19 07:41:39 pjanzen Exp $" ** to drop you. After that, it's your problem. */ -char *Cntvect[3] = +const char *const Cntvect[3] = {"first", "second", "third"}; void |