diff options
Diffstat (limited to 'gcc/f/bad.c')
-rw-r--r-- | gcc/f/bad.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/f/bad.c b/gcc/f/bad.c index 0ecaf7484c5..aa0ae6a0b84 100644 --- a/gcc/f/bad.c +++ b/gcc/f/bad.c @@ -61,13 +61,13 @@ bool ffebad_is_inhibited_ = FALSE; struct _ffebad_message_ { - ffebadSeverity severity; - const char *message; + const ffebadSeverity severity; + const char *const message; }; /* Static objects accessed by functions in this module. */ -static struct _ffebad_message_ ffebad_messages_[] +static const struct _ffebad_message_ ffebad_messages_[] = { #define FFEBAD_MSGS1(KWD,SEV,MSG) { SEV, MSG }, |