summaryrefslogtreecommitdiffstats
path: root/rogue/rogue.h
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2004-01-01 16:05:12 +0000
committerjsm <jsm@NetBSD.org>2004-01-01 16:05:12 +0000
commite853914eb0c34381bb9073e864d084bbfe1284df (patch)
treed37db5dbba84b48edf538cf508e44fcae6fdb042 /rogue/rogue.h
parentb7a44a904f68d5a88886d63c2abc4cb42f2ac56c (diff)
downloadbsdgames-darwin-e853914eb0c34381bb9073e864d084bbfe1284df.tar.gz
bsdgames-darwin-e853914eb0c34381bb9073e864d084bbfe1284df.tar.zst
bsdgames-darwin-e853914eb0c34381bb9073e864d084bbfe1284df.zip
Don't use -fwritable-strings. Add one more const.
Diffstat (limited to 'rogue/rogue.h')
-rw-r--r--rogue/rogue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rogue/rogue.h b/rogue/rogue.h
index b6854179..ebb4e595 100644
--- a/rogue/rogue.h
+++ b/rogue/rogue.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rogue.h,v 1.14 2003/08/07 09:37:39 agc Exp $ */
+/* $NetBSD: rogue.h,v 1.15 2004/01/01 16:05:12 jsm Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -192,7 +192,7 @@
struct id {
short value;
char title[MAX_ID_TITLE_LEN];
- char *real;
+ const char *real;
unsigned short id_status;
};