diff options
Diffstat (limited to 'gcc/config/alpha/alpha.c')
-rw-r--r-- | gcc/config/alpha/alpha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 9fd33a0ee71..d2d90d97076 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -7795,7 +7795,7 @@ alpha_write_one_linkage (node, data) splay_tree_node node; void *data; { - const char *name = (const char *) node->key; + const char *const name = (const char *) node->key; struct alpha_links *links = (struct alpha_links *) node->value; FILE *stream = (FILE *) data; @@ -8498,7 +8498,7 @@ static void unicosmk_output_default_externs (file) FILE *file; { - static const char *externs[] = + static const char *const externs[] = { "__T3E_MISMATCH" }; int i; |