diff options
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -110,10 +110,10 @@ enum token_types { | |||
110 | PAREN | 110 | PAREN |
111 | }; | 111 | }; |
112 | 112 | ||
113 | struct t_op { | 113 | static const struct t_op { |
114 | const char *op_text; | 114 | const char *op_text; |
115 | short op_num, op_type; | 115 | short op_num, op_type; |
116 | } const ops [] = { | 116 | } ops [] = { |
117 | {"-r", FILRD, UNOP}, | 117 | {"-r", FILRD, UNOP}, |
118 | {"-w", FILWR, UNOP}, | 118 | {"-w", FILWR, UNOP}, |
119 | {"-x", FILEX, UNOP}, | 119 | {"-x", FILEX, UNOP}, |