summaryrefslogtreecommitdiff
path: root/gcc/f/malloc.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2001-09-12 16:52:42 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2001-09-12 16:52:42 +0000
commit19dab7952cfedc4e896ce817b4221af7b042e080 (patch)
treebba4c0f36eb6673fc1dbf8e57c1e63cdcd15a3e2 /gcc/f/malloc.c
parent40008eda377fb8e6ff7549230c81767217662791 (diff)
downloadgcc-19dab7952cfedc4e896ce817b4221af7b042e080.tar.gz
bld.c (ffebld_op_string_): Const-ification.
* bld.c (ffebld_op_string_): Const-ification. * com.c (ffecom_gfrt_name_, ffecom_gfrt_argstring_): Likewise. * fini.c (xspaces): Likewise. * global.c (ffeglobal_type_string_): Likewise. * info.c (ffeinfo_basictype_string_, ffeinfo_kind_message_, ffeinfo_kind_string_, ffeinfo_kindtype_string_, ffeinfo_where_string_): Likewise. * lex.c (ffelex_type_string_): Likewise. * malloc.c (malloc_types_): Likewise. * stc.c (ffestc_subr_binsrch_, ffestc_R904, ffestc_R904, ffestc_R907): Likewise. * symbol.c (ffesymbol_state_name_, ffesymbol_attr_name_): Likewise. * version.c (ffe_version_string): Likewise. * version.h (ffe_version_string): Likewise. From-SVN: r45566
Diffstat (limited to 'gcc/f/malloc.c')
-rw-r--r--gcc/f/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/f/malloc.c b/gcc/f/malloc.c
index 032c2bfdfbf..77e2e4a12e2 100644
--- a/gcc/f/malloc.c
+++ b/gcc/f/malloc.c
@@ -70,7 +70,7 @@ struct _malloc_root_ malloc_root_
static void *malloc_reserve_ = NULL; /* For crashes. */
#if MALLOC_DEBUG
-static const char *malloc_types_[] =
+static const char *const malloc_types_[] =
{"KS", "KSR", "NF", "NFR", "US", "USR"};
#endif