diff options
author | Matt Kraai <kraai@alumni.carnegiemellon.edu> | 2001-08-22 18:09:24 +0000 |
---|---|---|
committer | Matt Kraai <kraai@gcc.gnu.org> | 2001-08-22 18:09:24 +0000 |
commit | 8060c8ee523a6016589157d25ff9e82adc4ebb0c (patch) | |
tree | edf7a6af29881c568b91477cdc8282fcd3785a9a /gcc/gcc.c | |
parent | 3e4eece35f46d606b982620e811b0f89d96a4f6b (diff) | |
download | gcc-8060c8ee523a6016589157d25ff9e82adc4ebb0c.zip gcc-8060c8ee523a6016589157d25ff9e82adc4ebb0c.tar.gz gcc-8060c8ee523a6016589157d25ff9e82adc4ebb0c.tar.bz2 |
* gcc.c (struct prefix_list): Change prefix to const char *.
From-SVN: r45111
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1205,7 +1205,7 @@ skip_whitespace (p) struct prefix_list { - char *prefix; /* String to prepend to the path. */ + const char *prefix; /* String to prepend to the path. */ struct prefix_list *next; /* Next in linked list. */ int require_machine_suffix; /* Don't use without machine_suffix. */ /* 2 means try both machine_suffix and just_machine_suffix. */ |