diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-01-02 23:18:59 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-01-02 23:18:59 +0000 |
commit | 5e65297bbb0b49c238b9543a6e730ef54c54196d (patch) | |
tree | 1b3ba80e154ddb807e8dfcaefbbd0018b015a992 /gcc/f/lex.c | |
parent | 0c5d8c8236e9bbbbede3c7f45396d4f9eeaceddd (diff) | |
download | gcc-5e65297bbb0b49c238b9543a6e730ef54c54196d.zip gcc-5e65297bbb0b49c238b9543a6e730ef54c54196d.tar.gz gcc-5e65297bbb0b49c238b9543a6e730ef54c54196d.tar.bz2 |
gcc.c (default_compilers): Const-ify.
* gcc.c (default_compilers): Const-ify.
* mips-tdump.c (stab_names): Likewise.
* mips-tfile.c (map_coff_types, map_coff_storage,
map_coff_sym_type, map_coff_derived_type, stabs_symbol,
pseudo_ops_t, pseudo_ops): Likewise.
* protoize.c (default_include): Likewise
f:
* com.c (clear_binding_level): Const-ify.
(ffecom_arglist_expr_): Likewise.
* info.c (ffeinfo_types_): Don't needlessly zero init.
* lex.c (ffelex_hash_kludge): Const-ify.
java:
* parse.y (src_parse_roots): Don't needlessly zero init.
libiberty:
* cp-demangle.c (long_options): Const-ify.
* cplus-dem.c (long_options): Likewise.
From-SVN: r48485
Diffstat (limited to 'gcc/f/lex.c')
-rw-r--r-- | gcc/f/lex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/f/lex.c b/gcc/f/lex.c index 6169656..acbb4d3 100644 --- a/gcc/f/lex.c +++ b/gcc/f/lex.c @@ -3898,10 +3898,10 @@ ffelex_hash_kludge (FILE *finput) /* If you change this constant string, you have to change whatever code might thus be affected by it in terms of having to use ffelex_getc_() instead of getc() in the lexers and _hash_. */ - static char match[] = "# 1 \""; + static const char match[] = "# 1 \""; static int kludge[ARRAY_SIZE (match) + 1]; int c; - char *p; + const char *p; int *q; /* Read chars as long as they match the target string. |