aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/jacl/encapsulate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/jacl/encapsulate.cpp')
-rw-r--r--engines/glk/jacl/encapsulate.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/glk/jacl/encapsulate.cpp b/engines/glk/jacl/encapsulate.cpp
index 8e65ba3932..8daba293d2 100644
--- a/engines/glk/jacl/encapsulate.cpp
+++ b/engines/glk/jacl/encapsulate.cpp
@@ -34,9 +34,9 @@ char text_buffer[1024];
/* THIS IS A STRING CONSTANT TO POINT TO WHENEVER A COMMA IS
* USED IN THE PLAYER'S INPUT */
-char *comma = "comma\0";
-char *then = "then\0";
-char *word[MAX_WORDS];
+const char *comma = "comma\0";
+const char *then = "then\0";
+const char *word[MAX_WORDS];
int quoted[MAX_WORDS];
int percented[MAX_WORDS];
int wp;