diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/i386/djgpp.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 02791b9..6b5b6d2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-09-27 Mark Elbrecht <snowball3@bigfoot.com> + + * config/i386/djgpp.h (UNIQUE_SECTION): Constify the variables + name and prefix. + Tue 26-Sep-2000 18:25:38 BST Neil Booth <neilb@earthling.net> * gcc.c (cpp_options): Add spec for -ftabstop=. diff --git a/gcc/config/i386/djgpp.h b/gcc/config/i386/djgpp.h index 762178a..7b05e66 100644 --- a/gcc/config/i386/djgpp.h +++ b/gcc/config/i386/djgpp.h @@ -266,7 +266,8 @@ dtor_section () \ #define UNIQUE_SECTION(DECL,RELOC) \ do { \ int len; \ - char *name, *string, *prefix; \ + const char *name, *prefix; \ + char *string; \ \ name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \ \ |
