diff options
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index a0c1d197fc6..33388cf477b 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -167,8 +167,8 @@ static char * syscalls_absolute_filename; /* Type of the structure that holds information about macro unexpansions. */ struct unexpansion_struct { - const char *expanded; - const char *contracted; + const char *const expanded; + const char *const contracted; }; typedef struct unexpansion_struct unexpansion; |