summaryrefslogtreecommitdiff
path: root/dump.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-03-17 13:51:46 +0000
committerDavid Mitchell <davem@iabyn.com>2017-03-17 14:10:14 +0000
commit521aa9ac9d163b537d772e3e0de4add0df35ca80 (patch)
treeaf799a8c04c6ad1a49b13cd37e0377a801e7d5d8 /dump.c
parent8c0364339f063fa32be742877e8206c8b6203de0 (diff)
downloadperl-521aa9ac9d163b537d772e3e0de4add0df35ca80.tar.gz
PERL_GLOBAL_STRUCT_PRIVATE: dump.c:op_class_names
t/porting/libperl.t under -DPERL_GLOBAL_STRUCT_PRIVATE doesn't like non-const static data structures
Diffstat (limited to 'dump.c')
-rw-r--r--dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dump.c b/dump.c
index c5e3a79feb..7cdebfe875 100644
--- a/dump.c
+++ b/dump.c
@@ -930,7 +930,7 @@ const struct flag_to_name op_flags_names[] = {
/* indexed by enum OPclass */
-const char * op_class_names[] = {
+const char * const op_class_names[] = {
"NULL",
"OP",
"UNOP",