aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2001-05-07 09:17:34 +0000
committerAlan Modra <amodra@gmail.com>2001-05-07 09:17:34 +0000
commit78f4a3f7286e900e75b4170b02fd0599b6fd54a8 (patch)
treece206f54ef6358dfefce3a1effaa54d47e1818e6
parent062e23589d2fdda4a6de3e540150a8df23671a36 (diff)
downloadgdb-78f4a3f7286e900e75b4170b02fd0599b6fd54a8.zip
gdb-78f4a3f7286e900e75b4170b02fd0599b6fd54a8.tar.gz
gdb-78f4a3f7286e900e75b4170b02fd0599b6fd54a8.tar.bz2
* readelf.c (process_unwind): Remove const specifier.
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/readelf.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 73d2c14..f2c82dc 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2001-05-07 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+ * readelf.c (process_unwind): Remove const specifier.
+
2001-04-27 Michal Svec <rebel@atrey.karlin.mff.cuni.cz>
* strings.c (isgraphic): Do not use isascii() unless it is needed
diff --git a/binutils/readelf.c b/binutils/readelf.c
index e30fba3..fa583e4 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -3434,7 +3434,7 @@ process_unwind (file)
strsec = section_headers + sec->sh_link;
aux.strtab_size = strsec->sh_size;
GET_DATA_ALLOC (strsec->sh_offset, aux.strtab_size,
- aux.strtab, const char *, "string table");
+ aux.strtab, char *, "string table");
}
else if (sec->sh_type == SHT_IA_64_UNWIND)
unwsec = sec;